Home | History | Annotate | Download | only in oslib
      1 #ifdef CONFIG_STRCASESTR
      2 
      3 #include <string.h>
      4 
      5 #else
      6 
      7 #ifndef FIO_STRCASESTR_H
      8 #define FIO_STRCASESTR_H
      9 
     10 char *strcasestr(const char *haystack, const char *needle);
     11 
     12 #endif
     13 #endif
     14