aboutsummaryrefslogtreecommitdiffstats
path: root/support.c
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-03-27 20:51:28 +0000
committerKalle Wallin <kaw@linux.se>2004-03-27 20:51:28 +0000
commit5b9768b3abd015ef0b11d587e4588cc3a99195ca (patch)
treebdc2eb65e4455c4fa13f6fec1456b3ca1c84d616 /support.c
parent95b5a376967fa1767e6503b2bc1b9594d6c910e9 (diff)
downloadmpd-5b9768b3abd015ef0b11d587e4588cc3a99195ca.tar.gz
mpd-5b9768b3abd015ef0b11d587e4588cc3a99195ca.tar.xz
mpd-5b9768b3abd015ef0b11d587e4588cc3a99195ca.zip
Initialize iconv_to_utf8 (used when saving playlists).
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@515 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'support.c')
-rw-r--r--support.c57
1 files changed, 50 insertions, 7 deletions
diff --git a/support.c b/support.c
index de3d80cef..907c5085f 100644
--- a/support.c
+++ b/support.c
@@ -34,6 +34,25 @@ iconv_t iconv_from_uft8 = (iconv_t)(-1);
iconv_t iconv_to_uft8 = (iconv_t)(-1);
#endif
+char *
+trim(char *str)
+{
+ char *end;
+
+ if( str==NULL )
+ return NULL;
+
+ while( IS_WHITESPACE(*str) )
+ str++;
+
+ end=str+strlen(str)-1;
+ while( end>str && IS_WHITESPACE(*end) )
+ {
+ *end = '\0';
+ end--;
+ }
+ return str;
+}
char *
remove_trailing_slash(char *path)
@@ -156,6 +175,12 @@ charset_init(void)
perror("iconv_open");
return -1;
}
+ iconv_to_uft8 = iconv_open("UTF-8", charset);
+ if( iconv_to_uft8 == (iconv_t)(-1) )
+ {
+ perror("iconv_open");
+ return -1;
+ }
#endif
return 0;
@@ -179,17 +204,18 @@ charset_close(void)
return 0;
}
-
-
-char *
-utf8_to_locale(char *str)
-{
#ifdef HAVE_ICONV
+static char *
+charconv(iconv_t iv, char *str)
+{
size_t inleft;
size_t retlen;
char *ret;
- if( iconv_from_uft8 == (iconv_t)(-1) )
+ if( str==NULL )
+ return NULL;
+
+ if( iv == (iconv_t)(-1) )
return strdup(str);
ret = NULL;
@@ -201,7 +227,7 @@ utf8_to_locale(char *str)
size_t outleft = BUFSIZE;
char *bufp = buf;
- if( iconv(iconv_from_uft8, &str, &inleft, &bufp, &outleft) <0 )
+ if( iconv(iv, &str, &inleft, &bufp, &outleft) <0 )
{
perror("iconv");
free(ret);
@@ -213,7 +239,24 @@ utf8_to_locale(char *str)
ret[retlen] = '\0';
}
return ret;
+}
+#endif
+
+char *
+utf8_to_locale(char *str)
+{
+#ifdef HAVE_ICONV
+ return charconv(iconv_from_uft8, str);
+#else
+ return strdup(str);
+#endif
+}
+char *
+locale_to_utf8(char *str)
+{
+#ifdef HAVE_ICONV
+ return charconv(iconv_to_uft8, str);
#else
return strdup(str);
#endif