aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-strlcpy.c
blob: 05fa509455c019e98b41170b9e6d56de6a96877b (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <string.h>

int
main(void)
{
	char buf[2] = "";
	return( ! (1 == strlcpy(buf, "a", sizeof(buf)) &&
	    'a' == buf[0] && '\0' == buf[1]));
}