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

A few utf8 *printf wrappers (refs #556)

parent ab65d88b
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>
#include <stdarg.h>
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_DIRENT_H #ifdef HAVE_DIRENT_H
...@@ -266,6 +267,19 @@ char *ToLocale( const char *utf8 ) ...@@ -266,6 +267,19 @@ char *ToLocale( const char *utf8 )
#endif #endif
} }
char *ToLocaleDup( const char *utf8 )
{
#if defined (ASSUME_UTF8)
return strdup( utf8 );
#else
# ifdef USE_ICONV
if (to_locale.hd == (vlc_iconv_t)(-1))
return strdup( utf8 );
# endif
return ToLocale( utf8 );
#endif
}
void LocaleFree( const char *str ) void LocaleFree( const char *str )
{ {
#ifdef USE_ICONV #ifdef USE_ICONV
...@@ -440,6 +454,44 @@ int utf8_lstat( const char *filename, void *buf) ...@@ -440,6 +454,44 @@ int utf8_lstat( const char *filename, void *buf)
return utf8_statEx( filename, buf, VLC_FALSE ); return utf8_statEx( filename, buf, VLC_FALSE );
} }
/*****************************************************************************
* utf8_*printf: *printf with conversion from UTF-8 to local encoding
*****************************************************************************/
int utf8_vasprintf( char **str, const char *fmt, va_list ap )
{
char *utf8;
int res = vasprintf( &utf8, fmt, ap );
if( res == -1 )
return -1;
*str = ToLocaleDup( utf8 );
free( utf8 );
return res;
}
int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap )
{
char *str;
int res = utf8_vasprintf( &str, fmt, ap );
if( res == -1 )
return -1;
fputs( str, stream );
free( str );
return res;
}
int utf8_fprintf( FILE *stream, const char *fmt, ... )
{
va_list ap;
int res;
va_start( ap, fmt );
res = utf8_vfprintf( stream, fmt, ap );
va_end( ap );
return res;
}
/***************************************************************************** /*****************************************************************************
* EnsureUTF8: replaces invalid/overlong UTF-8 sequences with question marks * EnsureUTF8: replaces invalid/overlong UTF-8 sequences with question marks
***************************************************************************** *****************************************************************************
......
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