aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memcpy_nullnull.c
blob: 30b72f35be8da9e85b0d642cec61f8e4637c136b (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_memcpy_null(NULL, src, sizeof src) ? 0 : 1;
}