⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atof.c

📁 基于4个mips核的noc设计
💻 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 + -