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