| 406 | } |
| 407 | |
| 408 | static void GetForwardWordLowered(unsigned int start, Accessor &styler, |
| 409 | char *s, unsigned int len) { |
| 410 | unsigned int i = 0; |
| 411 | while (i < len - 1 && IsAlpha(styler.SafeGetCharAt(start + i))) { |
| 412 | s[i] = static_cast<char>(tolower(styler.SafeGetCharAt(start + i))); |
| 413 | i++; |
| 414 | } |
| 415 | s[i] = '\0'; |
| 416 | } |
| 417 | |
| 418 | static void UpdatePreprocessorFoldLevel(int &levelCurrent, |
| 419 | unsigned int startPos, Accessor &styler) { |
no test coverage detected