xref: /freebsd/contrib/mandoc/test-strlcpy.c (revision 92b14858b44dc4b3b57154a10e9de1b39d791e41)
1 #include <string.h>
2 
3 int
4 main(void)
5 {
6 	char buf[2] = "";
7 	return ! (strlcpy(buf, "a", sizeof(buf)) == 1 &&
8 	    buf[0] == 'a' && buf[1] == '\0');
9 }
10