]> git.sesse.net Git - vlc/blobdiff - include/vlc_charset.h
LibVLC: fix typo
[vlc] / include / vlc_charset.h
index d181d1500672142ebca82b235e648c1d4c9b9521..ab6d5299a67ed9f06256accd10bc94ff6b1d4c77 100644 (file)
@@ -41,7 +41,7 @@ VLC_EXPORT( char *, ToLocale, ( const char * ) LIBVLC_USED );
 VLC_EXPORT( char *, ToLocaleDup, ( const char * ) LIBVLC_USED );
 
 /* 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 ) LIBVLC_USED );
+VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, ... ) LIBVLC_USED );
 VLC_EXPORT( FILE *, utf8_fopen, ( const char *filename, const char *mode ) LIBVLC_USED );
 VLC_EXPORT( DIR *, utf8_opendir, ( const char *dirname ) LIBVLC_USED );
 VLC_EXPORT( char *, utf8_readdir, ( DIR *dir ) LIBVLC_USED );
@@ -49,6 +49,7 @@ VLC_EXPORT( int, utf8_loaddir, ( DIR *dir, char ***namelist, int (*select)( cons
 VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) );
 VLC_EXPORT( int, utf8_mkdir, ( const char *filename, mode_t mode ) );
 VLC_EXPORT( int, utf8_unlink, ( const char *filename ) );
+int utf8_rename( const char *, const char * );
 
 #if defined( WIN32 ) && !defined( UNDER_CE )
 # define stat _stati64
@@ -86,7 +87,7 @@ static inline char *FromWide (const wchar_t *wide)
  */
 static inline char *FromLatin1 (const char *latin)
 {
-    char *str = malloc (2 * strlen (latin) + 1), *utf8 = str;
+    char *str = (char *)malloc (2 * strlen (latin) + 1), *utf8 = str;
     unsigned char c;
 
     if (str == NULL)
@@ -104,13 +105,14 @@ static inline char *FromLatin1 (const char *latin)
     }
     *(utf8++) = '\0';
 
-    utf8 = realloc (str, utf8 - str);
+    utf8 = (char *)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 );
+VLC_EXPORT( float, us_strtof, ( const char *, char ** ) LIBVLC_USED );
 VLC_EXPORT( double, us_atof, ( const char * ) LIBVLC_USED );
 VLC_EXPORT( int, us_asprintf, ( char **, const char *, ... ) LIBVLC_USED );