92f66574
dfda0cb3
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])); }