196 skipped lines |
197 | | 197 | | bool operator!=(const char *sOther) const { |
|
198 | | 198 | | return !operator==(sOther); |
|
|
200 | | bool contains(char ch) { | | 200 | | bool contains(char ch) const { |
201 | | 201 | | return (s && *s) ? strchr(s, ch) != 0 : false; |
|
|
203 | | 203 | | void setsizegrowth(lenpos_t sizeGrowth_) { |
|
49 skipped lines |
253 | | 253 | | bool startswith(const char *prefix); |
|
254 | | 254 | | bool endswith(const char *suffix); |
|
255 | | 255 | | int search(const char *sFind, lenpos_t start=0) const; |
|
256 | | bool contains(const char *sFind) { | | 256 | | bool contains(const char *sFind) const { |
257 | | 257 | | return search(sFind) >= 0; |
|
|
259 | | 259 | | int substitute(char chFind, char chReplace); |
|
22 skipped lines |