Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ atof(3) — Ultrix-11 3.0

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

scanf(3s)

strtod(3)

strtol(3)

atof(3)

NAME

atof, atoi, atol − convert ASCII to numbers

SYNTAX

double atof(nptr)
char *nptr;

atoi(nptr)
char *nptr;

long atol(nptr)
char *nptr;

DESCRIPTION

The atof subroutine recognizes an optional string of tabs and 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. 

The atoi and atol subroutines recognize an optional string of tabs and spaces, then an optional sign, then a string of digits.  These functions convert a string pointed to by nptr to floating integer, and long integer representation respectively.  The first unrecognized character ends the string. 

RESTRICTIONS

There are no provisions for overflow. 

SEE ALSO

scanf(3s), strtod(3), strtol(3)

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026