Subversion Repositories HelenOS

Rev

Rev 4153 | Rev 4327 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4153 Rev 4263
Line 35... Line 35...
35
#ifndef LIBC_STRING_H_
35
#ifndef LIBC_STRING_H_
36
#define LIBC_STRING_H_
36
#define LIBC_STRING_H_
37
 
37
 
38
#include <mem.h>
38
#include <mem.h>
39
#include <sys/types.h>
39
#include <sys/types.h>
-
 
40
#include <bool.h>
-
 
41
 
-
 
42
#define U_SPECIAL      '?'
-
 
43
#define U_BOM          0xfeff
-
 
44
 
-
 
45
/**< No size limit constant */
-
 
46
#define STR_NO_LIMIT  ((size_t) -1)
-
 
47
 
-
 
48
/**< Maximum size of a string containing cnt characters */
-
 
49
#define STR_BOUNDS(cnt)  (cnt << 2)
-
 
50
 
-
 
51
extern wchar_t str_decode(const char *str, size_t *offset, size_t sz);
-
 
52
extern int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t sz);
-
 
53
 
-
 
54
extern size_t str_size(const char *str);
-
 
55
extern size_t wstr_size(const wchar_t *str);
-
 
56
 
-
 
57
extern size_t str_lsize(const char *str, count_t max_len);
-
 
58
extern size_t wstr_lsize(const wchar_t *str, count_t max_len);
-
 
59
 
-
 
60
extern count_t str_length(const char *str);
-
 
61
extern count_t wstr_length(const wchar_t *wstr);
-
 
62
 
-
 
63
extern count_t str_nlength(const char *str, size_t size);
-
 
64
extern count_t wstr_nlength(const wchar_t *str, size_t size);
-
 
65
 
-
 
66
extern bool ascii_check(wchar_t ch);
-
 
67
extern bool chr_check(wchar_t ch);
-
 
68
 
-
 
69
extern int str_cmp(const char *s1, const char *s2);
-
 
70
extern int str_lcmp(const char *s1, const char *s2, count_t max_len);
-
 
71
 
-
 
72
extern void str_ncpy(char *dst, const char *src, size_t size);
-
 
73
extern void wstr_nstr(char *dst, const wchar_t *src, size_t size);
-
 
74
 
-
 
75
extern const char *str_chr(const char *str, wchar_t ch);
-
 
76
 
-
 
77
extern bool wstr_linsert(wchar_t *str, wchar_t ch, count_t pos, count_t max_pos);
-
 
78
extern bool wstr_remove(wchar_t *str, count_t pos);
-
 
79
 
-
 
80
/*
-
 
81
 * TODO: Get rid of this.
-
 
82
 */
40
 
83
 
41
extern int strcmp(const char *, const char *);
84
extern int strcmp(const char *, const char *);
42
extern int strncmp(const char *, const char *, size_t);
85
extern int strncmp(const char *, const char *, size_t);
43
extern int stricmp(const char *, const char *);
86
extern int stricmp(const char *, const char *);
44
 
87