freebsd-dev/contrib/mdocml/test-strlcat.c
2014-11-22 18:57:23 +00:00

10 lines
168 B
C

#include <string.h>
int
main(void)
{
char buf[3] = "a";
return( ! (2 == strlcat(buf, "b", sizeof(buf)) &&
'a' == buf[0] && 'b' == buf[1] && '\0' == buf[2]));
}