aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memchr_notfound.c
blob: 30c12a3b788db356adb57da1682244e6451c9d9e (plain) (blame)
1
2
3
4
5
#include <mem.h>

static char const buf[] = "test";

int main(void) { return calt_memchr(buf, 'u', sizeof buf) == NULL ? 0 : 1; }