VLC
3.0.21
|
Functions | |
double | us_strtod (const char *str, char **end) |
us_strtod() has the same prototype as ANSI C strtod() but it uses the POSIX/C decimal format, regardless of the current numeric locale. More... | |
float | us_strtof (const char *str, char **end) |
us_strtof() has the same prototype as ANSI C strtof() but it uses the POSIX/C decimal format, regardless of the current numeric locale. More... | |
double | us_atof (const char *str) |
us_atof() has the same prototype as ANSI C atof() but it expects a dot as decimal separator, regardless of the system locale. More... | |
int | us_vasprintf (char **ret, const char *format, va_list ap) |
us_vasprintf() has the same prototype as vasprintf(), but doesn't use the system locale. More... | |
int | us_asprintf (char **ret, const char *format,...) |
us_asprintf() has the same prototype as asprintf(), but doesn't use the system locale. More... | |
int us_asprintf | ( | char ** | ret, |
const char * | format, | ||
... | |||
) |
us_asprintf() has the same prototype as asprintf(), but doesn't use the system locale.
References us_vasprintf().
double us_atof | ( | const char * | str | ) |
us_atof() has the same prototype as ANSI C atof() but it expects a dot as decimal separator, regardless of the system locale.
References us_strtod().
Referenced by config_ChainParse(), config_LoadCmdLine(), var_OptionParse(), and vlc_audio_replay_gain_MergeFromMeta().
double us_strtod | ( | const char * | str, |
char ** | end | ||
) |
us_strtod() has the same prototype as ANSI C strtod() but it uses the POSIX/C decimal format, regardless of the current numeric locale.
References freelocale(), LC_NUMERIC_MASK, newlocale(), and uselocale().
Referenced by us_atof().
float us_strtof | ( | const char * | str, |
char ** | end | ||
) |
us_strtof() has the same prototype as ANSI C strtof() but it uses the POSIX/C decimal format, regardless of the current numeric locale.
References freelocale(), LC_NUMERIC_MASK, newlocale(), strtof(), and uselocale().
int us_vasprintf | ( | char ** | ret, |
const char * | format, | ||
va_list | ap | ||
) |
us_vasprintf() has the same prototype as vasprintf(), but doesn't use the system locale.
References freelocale(), LC_NUMERIC_MASK, newlocale(), uselocale(), and vasprintf().
Referenced by us_asprintf().