| 101 | using boost::filesystem::detail::questionmark; |
| 102 | |
| 103 | inline bool is_alnum(wchar_t c) |
| 104 | { |
| 105 | return boost::filesystem::detail::is_letter(c) || (c >= L'0' && c <= L'9'); |
| 106 | } |
| 107 | |
| 108 | inline bool is_device_name_char(wchar_t c) |
| 109 | { |
no test coverage detected