Changes in uspace/lib/c/include/str.h [086cab0:1c9bf292] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/str.h
r086cab0 r1c9bf292 38 38 #define _LIBC_STR_H_ 39 39 40 #ifdef __cplusplus 41 extern "C" { 42 #endif 43 40 44 #include <errno.h> 41 45 #include <stdbool.h> … … 44 48 45 49 #include <mem.h> 46 #include <_bits/decls.h>47 48 #ifndef __cplusplus49 50 50 51 /* Common Unicode characters */ … … 62 63 */ 63 64 #define SPASCII_STR_BUFSIZE(spa_size) ((spa_size) + 1) 64 65 #endif66 67 __HELENOS_DECLS_BEGIN;68 65 69 66 extern wchar_t str_decode(const char *str, size_t *offset, size_t sz); … … 98 95 99 96 extern bool str_test_prefix(const char *s, const char *p); 100 extern const char *str_suffix(const char *s, size_t prefix_length);101 97 102 98 extern void str_cpy(char *dest, size_t size, const char *src); … … 151 147 extern unsigned long strtoul(const char *, char **, int); 152 148 153 __HELENOS_DECLS_END; 149 #ifdef __cplusplus 150 } 151 #endif 154 152 155 153 #endif
Note:
See TracChangeset
for help on using the changeset viewer.