Rev 4014 | Rev 4179 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4014 | Rev 4175 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #ifndef KERN_STRING_H_ |
35 | #ifndef KERN_STRING_H_ |
| 36 | #define KERN_STRING_H_ |
36 | #define KERN_STRING_H_ |
| 37 | 37 | ||
| 38 | #include <arch/types.h> |
38 | #include <typedefs.h> |
| 39 | 39 | ||
| - | 40 | extern wchar_t utf8_decode(const char *str, index_t *index); |
|
| 40 | extern size_t strlen(const char *str); |
41 | extern size_t strlen(const char *str); |
| 41 | extern int strcmp(const char *src, const char *dst); |
42 | extern int strcmp(const char *src, const char *dst); |
| 42 | extern int strncmp(const char *src, const char *dst, size_t len); |
43 | extern int strncmp(const char *src, const char *dst, size_t len); |
| 43 | extern void strncpy(char *dest, const char *src, size_t len); |
44 | extern void strncpy(char *dest, const char *src, size_t len); |
| 44 | 45 | ||