docs/Writerside/topics/string.h.md

changeset 1646
85fd3ff8416e
parent 1644
bbe3199e37fc
equal deleted inserted replaced
1644:bbe3199e37fc 1646:85fd3ff8416e
155 155
156 cxstring cx_strchr(cxstring string, int chr); 156 cxstring cx_strchr(cxstring string, int chr);
157 157
158 cxstring cx_strrchr(cxstring string, int chr); 158 cxstring cx_strrchr(cxstring string, int chr);
159 159
160 cxstring cx_strstr(cxstring string, cxstring search); 160 cxstring cx_strstr(cxstring string, AnyStr search);
161 161
162 cxstring cx_strsubs(cxstring string, size_t start); 162 cxstring cx_strsubs(cxstring string, size_t start);
163 163
164 cxstring cx_strsubsl(cxstring string, size_t start, size_t length); 164 cxstring cx_strsubsl(cxstring string, size_t start, size_t length);
165 165
167 167
168 cxmutstr cx_strchr_m(cxmutstr string, int chr); 168 cxmutstr cx_strchr_m(cxmutstr string, int chr);
169 169
170 cxmutstr cx_strrchr_m(cxmutstr string, int chr); 170 cxmutstr cx_strrchr_m(cxmutstr string, int chr);
171 171
172 cxmutstr cx_strstr_m(cxmutstr string, cxstring search); 172 cxmutstr cx_strstr_m(cxmutstr string, AnyStr search);
173 173
174 cxmutstr cx_strsubs_m(cxmutstr string, size_t start); 174 cxmutstr cx_strsubs_m(cxmutstr string, size_t start);
175 175
176 cxmutstr cx_strsubsl_m(cxmutstr string, size_t start, size_t length); 176 cxmutstr cx_strsubsl_m(cxmutstr string, size_t start, size_t length);
177 177

mercurial