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