aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memcmp_diff.c
blob: 2601656e769c4c95738939148cf5c2741a537baf (plain) (blame)
1
2
3
4
5
6
7
8
#include <mem.h>

static char const buf1[] = "hello";
static char const buf2[] = "HELLO";

int main(void) {
  return calt_memcmp(buf1, buf2, sizeof(buf1)) != 0 ? 0 : 1;
}