diff options
author | Max Kellermann <max@duempel.org> | 2008-11-05 18:21:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-05 18:21:52 +0100 |
commit | 3002fd18cb6a1e0690ea969e2560373be158526e (patch) | |
tree | fe1ca7814f1f48cde4feda191e58aca85666cf62 /src/path.h | |
parent | 259c6ed1642cd6cc0e5cb8bfcfdeed93150b2e99 (diff) | |
download | mpd-3002fd18cb6a1e0690ea969e2560373be158526e.tar.gz mpd-3002fd18cb6a1e0690ea969e2560373be158526e.tar.xz mpd-3002fd18cb6a1e0690ea969e2560373be158526e.zip |
path: no CamelCase
Rename variables and functions.
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 |