Changes in kernel/generic/include/str.h [83dab11:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/str.h
r83dab11 rb7fd2a0 39 39 #include <stddef.h> 40 40 #include <stdint.h> 41 #include <errno.h> 41 42 42 43 /**< Common Unicode characters */ … … 67 68 68 69 extern wchar_t str_decode(const char *str, size_t *offset, size_t sz); 69 extern int chr_encode(wchar_t ch, char *str, size_t *offset, size_t sz);70 extern errno_t chr_encode(wchar_t ch, char *str, size_t *offset, size_t sz); 70 71 71 72 extern size_t str_size(const char *str); … … 99 100 extern bool wstr_remove(wchar_t *str, size_t pos); 100 101 101 extern int str_uint64_t(const char *, char **, unsigned int, bool, uint64_t *);102 extern errno_t str_uint64_t(const char *, char **, unsigned int, bool, uint64_t *); 102 103 103 104 extern void order_suffix(const uint64_t, uint64_t *, char *); 104 105 extern void bin_order_suffix(const uint64_t, uint64_t *, const char **, bool); 106 107 extern const char *str_error(errno_t err); 108 extern const char *str_error_name(errno_t err); 105 109 106 110 #endif
Note:
See TracChangeset
for help on using the changeset viewer.