Rev 4175 | Rev 4200 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4175 | Rev 4179 | ||
---|---|---|---|
Line 35... | Line 35... | ||
35 | #ifndef KERN_STRING_H_ |
35 | #ifndef KERN_STRING_H_ |
36 | #define KERN_STRING_H_ |
36 | #define KERN_STRING_H_ |
37 | 37 | ||
38 | #include <typedefs.h> |
38 | #include <typedefs.h> |
39 | 39 | ||
- | 40 | #define UTF8_NO_LIMIT ((index_t) -1) |
|
- | 41 | ||
- | 42 | extern char invalch; |
|
- | 43 | ||
40 | extern wchar_t utf8_decode(const char *str, index_t *index); |
44 | extern wchar_t utf8_decode(const char *str, index_t *index, index_t limit); |
- | 45 | extern bool utf8_encode(const wchar_t ch, char *str, index_t *index, index_t limit); |
|
- | 46 | extern size_t utf8_count_bytes(const char *str, count_t count); |
|
- | 47 | extern bool ascii_check(const wchar_t ch); |
|
- | 48 | extern bool unicode_check(const wchar_t ch); |
|
- | 49 | ||
41 | extern size_t strlen(const char *str); |
50 | extern size_t strlen(const char *str); |
- | 51 | extern size_t strlen_utf8(const char *str); |
|
- | 52 | extern size_t strlen_utf32(const wchar_t *str); |
|
- | 53 | ||
42 | extern int strcmp(const char *src, const char *dst); |
54 | extern int strcmp(const char *src, const char *dst); |
43 | extern int strncmp(const char *src, const char *dst, size_t len); |
55 | extern int strncmp(const char *src, const char *dst, size_t len); |
44 | extern void strncpy(char *dest, const char *src, size_t len); |
56 | extern void strncpy(char *dest, const char *src, size_t len); |
45 | 57 | ||
46 | extern char *strchr(const char *s, int i); |
58 | extern char *strchr(const char *s, int i); |