| 347 | } |
| 348 | |
| 349 | void AbstractString::lower() |
| 350 | { |
| 351 | #ifdef WIN_NT |
| 352 | CharLowerBuffA(modify(), length()); |
| 353 | #else // WIN_NT |
| 354 | for (pointer p = modify(); *p; p++) { |
| 355 | *p = tolower(*p); |
| 356 | } |
| 357 | #endif // WIN_NT |
| 358 | } |
| 359 | |
| 360 | void AbstractString::baseTrim(const TrimType whereTrim, const_pointer toTrim) |
| 361 | { |