]> wimlib.net Git - wimlib/blob - include/wimlib/paths.h
Refactor headers
[wimlib] / include / wimlib / paths.h
1 #ifndef _WIMLIB_PATHS_H
2 #define _WIMLIB_PATHS_H
3
4 #include "wimlib/types.h"
5
6 const tchar *
7 path_basename(const tchar *path);
8
9 const tchar *
10 path_basename_with_len(const tchar *path, size_t len);
11
12 extern const tchar *
13 path_stream_name(const tchar *path);
14
15 extern void
16 zap_backslashes(tchar *s);
17
18 extern tchar *
19 canonicalize_wim_path(const tchar *wim_path);
20
21 extern tchar *
22 canonicalize_fs_path(const tchar *fs_path);
23
24 #endif /* _WIMLIB_PATHS_H */