📄 atof.c
字号:
/* * lib-src/ansi/stdlib/atof.c * ANSI/ISO 9899-1990, Section 7.10.1.1. * * double atof(const char *nptr) * Return a double containing the value represented by the string at nptr. * * This version just lets strtod() do the work, * disregarding the excess baggage of the endptr code in strtod(). */#include <stdlib.h>doubleatof(const char *nptr){ return strtod(nptr, (char **)NULL);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -