Changeset 3e828ea in mainline for uspace/lib/c/include/str.h
- Timestamp:
- 2019-09-23T12:49:29Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9be2358
- Parents:
- 9259d20 (diff), 1a4ec93f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jiri Svoboda <jiri@…> (2019-09-22 12:49:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-09-23 12:49:29)
- File:
-
- 1 edited
-
uspace/lib/c/include/str.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/str.h
r9259d20 r3e828ea 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); … … 134 137 extern errno_t str_size_t(const char *, const char **, unsigned int, bool, 135 138 size_t *); 136 extern int str_int64_t(const char *, const char **, unsigned int, bool,139 extern errno_t str_int64_t(const char *, const char **, unsigned int, bool, 137 140 int64_t *); 138 141 … … 147 150 extern unsigned long strtoul(const char *, char **, int); 148 151 149 #ifdef __cplusplus 150 } 151 #endif 152 __HELENOS_DECLS_END; 152 153 153 154 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
