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

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

1.1     ! schwarze    1: #include <string.h>
        !             2:
        !             3: int
        !             4: main(void)
        !             5: {
        !             6:        const char *big = "BigString";
        !             7:        char *cp = strcasestr(big, "Gst");
        !             8:        return(big + 2 != cp);
        !             9: }

CVSweb