函数:
gdouble
g_ascii_strtod (const gchar *nptr,
gchar **endptr);
参数:
- nptr
指向被转换的字符串。- endptr
如果为非NULL,则返回转换中使用的最后一个字符之后的字符。
功能:
该函数将 nptr 指向的字符串转换为 double.
与strtod()的区别是这个函数忽略了C locale。
原版:
https://developer.gnome.org/glib/stable/glib-String-Utility-Functions.html#g-ascii-strtod