| 142 | static bool is_reserved_dir (const wchar_t *fn) |
| 143 | #else |
| 144 | static bool is_reserved_dir (const char *fn) |
| 145 | #endif |
| 146 | { |
| 147 | return (fn [0] == '.' && (fn [1] == 0 || (fn [1] == '.' && fn [2] == 0))); |
| 148 | } |
| 149 | //----------------------------------------------------------------------- |
| 150 | static bool is_absolute_path(const char* path) |
| 151 | { |