vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

strings.h (204B)


      1 #ifndef _STRINGS_H
      2 #define _STRINGS_H
      3 
      4 #include <stddef.h>
      5 
      6 int ffs(int);
      7 
      8 int strcasecmp(const char *s1, const char *s2);
      9 int strncasecmp(const char *s1, const char *s2, size_t n);
     10 
     11 #endif	// _STRINGS_H