aboutsummaryrefslogtreecommitdiffstats
path: root/test/mem/memmove_nullnull.c
blob: 325b859f897b5eb60cad26f265abe4bfe78b5aee (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_memmove_null(NULL, src, sizeof src) ? 0 : 1;
}