]> git.sesse.net Git - vlc/commitdiff
FromLatin1: converts from ISO-8859-1 to UTF-8
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 16 Dec 2008 17:58:10 +0000 (19:58 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 16 Dec 2008 17:58:10 +0000 (19:58 +0200)
include/vlc_charset.h

index 6e5c4d7b325ef2ac36b367723c6cf7253756bd87..d181d1500672142ebca82b235e648c1d4c9b9521 100644 (file)
@@ -81,6 +81,33 @@ static inline char *FromWide (const wchar_t *wide)
 }
 #endif
 
+/**
+ * Converts a nul-terminated string from ISO-8859-1 to UTF-8.
+ */
+static inline char *FromLatin1 (const char *latin)
+{
+    char *str = malloc (2 * strlen (latin) + 1), *utf8 = str;
+    unsigned char c;
+
+    if (str == NULL)
+        return NULL;
+
+    while ((c = *(latin++)) != '\0')
+    {
+         if (c >= 0x80)
+         {
+             *(utf8++) = 0xC0 | (c >> 6);
+             *(utf8++) = 0x80 | (c & 0x3F);
+         }
+         else
+             *(utf8++) = c;
+    }
+    *(utf8++) = '\0';
+
+    utf8 = realloc (str, utf8 - str);
+    return utf8 ? utf8 : str;
+}
+
 VLC_EXPORT( const char *, GetFallbackEncoding, ( void ) LIBVLC_USED );
 
 VLC_EXPORT( double, us_strtod, ( const char *, char ** ) LIBVLC_USED );