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/options.c | |
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/options.c')
-rw-r--r-- | src/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c index 421eda7d8..9cb1b1685 100644 --- a/src/options.c +++ b/src/options.c @@ -19,12 +19,13 @@ #include "options.h" #include "config.h" #include "defaults.h" -#include "support.h" +#include "charset.h" #include "command.h" #include "conf.h" #include <stdlib.h> #include <string.h> +#include <glib.h> #define MAX_LONGOPT_LENGTH 32 |