xref: /freebsd/contrib/mandoc/test-strlcpy.c (revision 38829592dc77e9ead4259785e0bfb93bd4c2fe34)
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