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

static char const buf[] = "test";

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