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

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

1.1     ! schwarze    1: #include <sys/types.h>
        !             2: #include <stdio.h>
        !             3: #include <unistd.h>
        !             4:
        !             5: int
        !             6: main(void)
        !             7: {
        !             8:        char    *line = NULL;
        !             9:        size_t   linesz = 0;
        !            10:
        !            11:        fclose(stdin);
        !            12:        return getline(&line, &linesz, stdin) != -1;
        !            13: }

CVSweb