aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-strlcat.c
blob: b74ce6f4f8f38920eefc004afdc9b6c2d4a011d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
#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]));
}