Changes in / [3f4c897d:723560f] in mainline


Ignore:
Location:
uspace/lib/posix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/string.h

    r3f4c897d r723560f  
    105105#ifndef POSIX_STRINGS_H_
    106106extern 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);
    109107#endif
    110108
     
    142140
    143141        #define ffs posix_ffs
    144         #define strcasecmp posix_strcasecmp
    145         #define strncasecmp posix_strncasecmp
    146142#endif
    147143
  • uspace/lib/posix/strings.h

    r3f4c897d r723560f  
    4343
    4444/* String/Array Comparison */
    45 #ifndef POSIX_STRING_H_
    4645extern int posix_strcasecmp(const char *s1, const char *s2);
    4746extern int posix_strncasecmp(const char *s1, const char *s2, size_t n);
    48 #endif
    4947
    5048/* TODO: not implemented due to missing locale.h
Note: See TracChangeset for help on using the changeset viewer.