| 86 | } |
| 87 | |
| 88 | static void ScanSetSetCharRange(char (*cs)[32], char first, char last, bool value) |
| 89 | { |
| 90 | for (char c = first; c <= last; ++c) |
| 91 | ScanSetSetChar(cs, c, value); |
| 92 | } |
| 93 | |
| 94 | static int ParseScanSet(const char* format, char (*cs)[32]) |
| 95 | { |
no test coverage detected