[BACK]Return to test-strndup.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/test-strndup.c, Revision 1.1

1.1     ! schwarze    1: #include <string.h>
        !             2:
        !             3: int
        !             4: main(void)
        !             5: {
        !             6:        char *s;
        !             7:
        !             8:        s = strndup("123", 2);
        !             9:        return s[0] != '1' ? 1 : s[1] != '2' ? 2 : s[2] != '\0' ? 3 : 0;
        !            10: }

CVSweb