str_extra.c

Extra string functions library for C
git clone git://git.finwo.net/lib/str_extra.c
Log | Files | Refs | README

strnstr.h (205B)


      1 #ifndef __FINWO_STREXTRA_STRNSTR_H__
      2 #define __FINWO_STREXTRA_STRNSTR_H__
      3 
      4 #include <stdlib.h>
      5 
      6 char *strnstr(const char *haystack, const char *needle, size_t len);
      7 
      8 #endif // __FINWO_STREXTRA_STRNSTR_H__