]> git.cameronkatri.com Git - mandoc.git/blob - test-strcasestr.c
following the fixed parsing direction of roff_expand() in roff.c rev. 1.388,
[mandoc.git] / test-strcasestr.c
1 #include <string.h>
2
3 int
4 main(void)
5 {
6 const char *big = "BigString";
7 char *cp = strcasestr(big, "Gst");
8 return cp != big + 2;
9 }