| 88 | static bool is_reserved_dir( const wchar_t *fn ) |
| 89 | #else |
| 90 | static bool is_reserved_dir( const char *fn ) |
| 91 | #endif |
| 92 | { |
| 93 | return ( fn[0] == '.' && ( fn[1] == 0 || ( fn[1] == '.' && fn[2] == 0 ) ) ); |
| 94 | } |
| 95 | //----------------------------------------------------------------------- |
| 96 | static bool is_absolute_path( const char *path ) |
| 97 | { |