61d06d6bd1
Approved by: re (kib) MFC after: 1 week
10 lines
166 B
C
10 lines
166 B
C
#include <string.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
char buf[3] = "a";
|
|
return ! (strlcat(buf, "b", sizeof(buf)) == 2 &&
|
|
buf[0] == 'a' && buf[1] == 'b' && buf[2] == '\0');
|
|
}
|