| 1 | /*++ |
| 2 | |
| 3 | Copyright (c) Microsoft. All rights reserved. |
| 4 | |
| 5 | Module Name: |
| 6 | |
| 7 | escape.h |
| 8 | |
| 9 | Abstract: |
| 10 | |
| 11 | This file contains declarations for escaping Linux paths for us on NTFS using |
| 12 | the DrvFs escape conventions. |
| 13 | |
| 14 | --*/ |
| 15 | |
| 16 | void EscapePathForNt(const char* Path, char* EscapedPath); |
| 17 | |
| 18 | size_t EscapePathForNtLength(const char* Path); |
| 19 | |
| 20 | void UnescapePathInplace(char* Path); |