freebsd-dev/contrib/mandoc/test-strndup.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
141 B
C
Raw Normal View History

2018-09-20 07:33:14 +00:00
#include <string.h>
int
main(void)
{
char *s;
s = strndup("123", 2);
return s[0] != '1' ? 1 : s[1] != '2' ? 2 : s[2] != '\0' ? 3 : 0;
}