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