Commit 0fd1b747 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Export ToLocaleDup

parent b8a4cd33
...@@ -37,6 +37,7 @@ VLC_EXPORT( void, LocaleFree, ( const char * ) ); ...@@ -37,6 +37,7 @@ VLC_EXPORT( void, LocaleFree, ( const char * ) );
VLC_EXPORT( char *, FromLocale, ( const char * ) ); VLC_EXPORT( char *, FromLocale, ( const char * ) );
VLC_EXPORT( char *, FromLocaleDup, ( const char * ) ); VLC_EXPORT( char *, FromLocaleDup, ( const char * ) );
VLC_EXPORT( char *, ToLocale, ( const char * ) ); VLC_EXPORT( char *, ToLocale, ( const char * ) );
VLC_EXPORT( char *, ToLocaleDup, ( const char * ) );
/* TODO: move all of this to "vlc_fs.h" or something like that */ /* TODO: move all of this to "vlc_fs.h" or something like that */
VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) ); VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) );
......
...@@ -330,6 +330,7 @@ str_format_time ...@@ -330,6 +330,7 @@ str_format_time
tls_ClientCreate tls_ClientCreate
tls_ClientDelete tls_ClientDelete
ToLocale ToLocale
ToLocaleDup
unescape_URI unescape_URI
unescape_URI_duplicate unescape_URI_duplicate
update_Check update_Check
......
...@@ -226,7 +226,7 @@ char *ToLocale (const char *utf8) ...@@ -226,7 +226,7 @@ char *ToLocale (const char *utf8)
} }
static char *ToLocaleDup (const char *utf8) char *ToLocaleDup (const char *utf8)
{ {
return locale_dup (utf8, false); return locale_dup (utf8, false);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment