]> git.saurik.com Git - apple/libc.git/blob - tests/strlcpy.c
Libc-1439.100.3.tar.gz
[apple/libc.git] / tests / strlcpy.c
1 #include <string.h>
2
3 #include <darwintest.h>
4
5 T_DECL(strlcpy_PR_30745460, "Test return value of strlcpy(3)",
6 T_META_CHECK_LEAKS(NO))
7 {
8 char buf[1];
9 T_EXPECT_EQ(strlcpy(buf, "text", 1), 4UL, NULL);
10 T_EXPECT_EQ(strlcpy(NULL, "text", 0), 4UL, NULL);
11 }