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