aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memccpy_nullnull.c
blob: 629c990fa957fdfc0a8a442d3b708620387b2a20 (plain) (blame)
1
2
3
4
5
6
7
8
#include <mem.h>
#include <stddef.h>

static char const src[] = "Hello World";

int main(void){
	return !calt_memccpy_null(NULL, src, 'e' ,sizeof src) ? 0 : 1;
}