1 2 3 4 5 6 7
#include <mem.h> static char const buf1[] = "hello"; int main(void) { return calt_memcmp(buf1, buf1, sizeof(buf1)) == 0 ? 0 : 1; }