inline void LowerCaseStr(char* str) Modifies str so all characters are lower case
| 120 | // case |
| 121 | // |
| 122 | static inline void |
| 123 | LowerCaseStr(char *str) |
| 124 | { |
| 125 | if (!str) { |
| 126 | return; |
| 127 | } |
| 128 | while (*str != '\0') { |
| 129 | *str = ParseRules::ink_tolower(*str); |
| 130 | str++; |
| 131 | } |
| 132 | } |
no outgoing calls
no test coverage detected