diff options
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/path.h b/src/path.h index c1003d846..16ddb9ed4 100644 --- a/src/path.h +++ b/src/path.h @@ -31,17 +31,17 @@ # endif #endif -void initPaths(void); +void path_global_init(void); -void finishPaths(void); +void path_global_finish(void); char *fs_charset_to_utf8(char *dst, const char *str); char *utf8_to_fs_charset(char *dst, const char *str); -void setFsCharset(const char *charset); +void path_set_fs_charset(const char *charset); -const char *getFsCharset(void); +const char *path_get_fs_charset(void); /* * pfx_dir - sets dst="$pfx/$path" and returns a pointer to path inside * dst |