Changes in uspace/lib/posix/string.h [458d356:d3ce33fa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/string.h
r458d356 rd3ce33fa 85 85 extern char *posix_strchr(const char *s, int c); 86 86 extern char *posix_strrchr(const char *s, int c); 87 extern char *gnu_strchrnul(const char *s, int c); 87 88 extern char *posix_strpbrk(const char *s1, const char *s2); 88 89 extern size_t posix_strcspn(const char *s1, const char *s2); … … 101 102 extern size_t posix_strlen(const char *s); 102 103 extern size_t posix_strnlen(const char *s, size_t n); 104 105 /* Signal messages */ 106 extern char *posix_strsignal(int signum); 103 107 104 108 /* Legacy declarations */ … … 127 131 #define strchr posix_strchr 128 132 #define strrchr posix_strrchr 133 #define strchrnul gnu_strchrnul 129 134 #define strpbrk posix_strpbrk 130 135 #define strcspn posix_strcspn … … 141 146 #define strnlen posix_strnlen 142 147 148 #define strsignal posix_strsignal 149 143 150 #define ffs posix_ffs 144 151 #define strcasecmp posix_strcasecmp
Note:
See TracChangeset
for help on using the changeset viewer.