| 439 | }*/ |
| 440 | |
| 441 | static bool IsIdentifierChar(char c) |
| 442 | { |
| 443 | return (((c >= '0') && (c <= '9')) || |
| 444 | ((c >= 'A') && (c <= 'Z')) || |
| 445 | ((c >= 'a') && (c <= 'z')) || |
| 446 | ((c == '_'))); |
| 447 | } |
| 448 | |
| 449 | struct ThreadProtect |
| 450 | { |
no outgoing calls
no test coverage detected