]> git.cameronkatri.com Git - mandoc.git/blob - test-strcasestr.c
Generalize the mparse_alloc() and roff_alloc() functions by giving
[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(big + 2 != cp);
9 }