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

📄 atof.3

📁 Unix操作系统minix 2.0源码
💻 3
字号:


ATOF(3)                   Minix Programmer's Manual                    ATOF(3)


NAME
     atof, atoi, atol - convert ASCII to numbers

SYNOPSIS
     #include <stdlib.h>

     double atof(const char *nptr)
     int atoi(const char *nptr)
     long atol(const char *nptr)

DESCRIPTION
     These functions convert a string pointed to by nptr to floating, integer,
     and  long  integer  representation  respectively.  The first unrecognized
     character ends the string.

     Atof recognizes an optional string of spaces, then an optional sign, then
     a  string  of  digits  optionally  containing  a  decimal  point, then an
     optional `e' or `E' followed by an optionally signed integer.

     Atoi and atol recognize an optional string of spaces,  then  an  optional
     sign, then a string of digits.

SEE ALSO
     strtol(3), strtod(3), scanf(3).

BUGS
     There are no provisions for overflow.

























                                May 15, 1985                                 1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -