strings.h - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) 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