Changes in / [3f4c897d:723560f] in mainline
- Location:
- uspace/lib/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/string.h
r3f4c897d r723560f 105 105 #ifndef POSIX_STRINGS_H_ 106 106 extern int posix_ffs(int i); 107 extern int posix_strcasecmp(const char *s1, const char *s2);108 extern int posix_strncasecmp(const char *s1, const char *s2, size_t n);109 107 #endif 110 108 … … 142 140 143 141 #define ffs posix_ffs 144 #define strcasecmp posix_strcasecmp145 #define strncasecmp posix_strncasecmp146 142 #endif 147 143 -
uspace/lib/posix/strings.h
r3f4c897d r723560f 43 43 44 44 /* String/Array Comparison */ 45 #ifndef POSIX_STRING_H_46 45 extern int posix_strcasecmp(const char *s1, const char *s2); 47 46 extern int posix_strncasecmp(const char *s1, const char *s2, size_t n); 48 #endif49 47 50 48 /* TODO: not implemented due to missing locale.h
Note:
See TracChangeset
for help on using the changeset viewer.