| 616 | |
| 617 | |
| 618 | static bool isDriveLetter(const tstring::char_type letter) |
| 619 | { |
| 620 | return (letter >= 'A' && letter <= 'Z') || (letter >= 'a' && letter <= 'z'); |
| 621 | } |
| 622 | |
| 623 | |
| 624 | // Code of this function is a slightly changed version of this routine |
no outgoing calls
no test coverage detected