]> git.sesse.net Git - vlc/blobdiff - src/text/charset.c
Remove i18n_strtod - nobody uses it and it's an ugly hack
[vlc] / src / text / charset.c
index 4e265324a1b662ac77ed4d410f5ce47471c8a43f..f7de34c15901a384485053bd1c432ede3a985201 100644 (file)
@@ -377,16 +377,7 @@ char *vlc_fix_readdir( const char *psz_string )
 }
 
 
-/**
- * There are two decimal separators in the computer world-wide locales:
- * dot (which is the american default), and comma (which is used in France,
- * the country with the most VLC developers, among others).
- *
- * i18n_strtod() has the same prototype as ANSI C strtod() but it accepts
- * either decimal separator when deserializing the string to a float number,
- * independant of the local computer setting.
- */
-double i18n_strtod( const char *str, char **end )
+static double i18n_strtod( const char *str, char **end )
 {
     char *end_buf, e;
     double d;