1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00
freebsd/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]));
}