diff options
author | Max Kellermann <max@duempel.org> | 2008-10-02 19:00:35 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-02 19:00:35 +0200 |
commit | b693269fd9740a3074b84da5645f6bd9daa6486e (patch) | |
tree | 93c83052ce5dc35155542ebbed4b2286f2c2e69a /src/support.h | |
parent | a3f209be26e588397f7b96de73fb86625c6d2bb8 (diff) | |
download | mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.tar.gz mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.tar.xz mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.zip |
moved code to charset.c
Move everything which deals with UTF-8 strings and character set
conversion to charset.c, header charset.h.
Diffstat (limited to 'src/support.h')
-rw-r--r-- | src/support.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/support.h b/src/support.h index 3377f9a80..0679ddc86 100644 --- a/src/support.h +++ b/src/support.h @@ -24,17 +24,4 @@ typedef struct { char *strscroll(char *str, char *separator, int width, scroll_state_t *st); -void charset_init(gboolean disable); -char *utf8_to_locale(const char *str); -char *locale_to_utf8(const char *str); - -/** - * Returns the number of terminal cells occupied by this string. - */ -size_t my_strlen(const char *str); - -/* number of bytes in str */ -size_t my_strsize(char *str); - - #endif |