| 73 | //////////////////////////////////////////////////////////////////////////////// |
| 74 | |
| 75 | static inline int lowercase(int c) |
| 76 | { |
| 77 | return static_cast<unsigned char>(c | 0x20); |
| 78 | } |
| 79 | |
| 80 | static inline int uppercase(int c) |
| 81 | { |
no outgoing calls
no test coverage detected