summaryrefslogtreecommitdiff
path: root/static/v10/man3/atof.3
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man3/atof.3
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man3/atof.3')
-rw-r--r--static/v10/man3/atof.343
1 files changed, 0 insertions, 43 deletions
diff --git a/static/v10/man3/atof.3 b/static/v10/man3/atof.3
deleted file mode 100644
index 07d59613..00000000
--- a/static/v10/man3/atof.3
+++ /dev/null
@@ -1,43 +0,0 @@
-.pa 1
-.he 'ATOF (III)'1/15/73'ATOF (III)'
-.ti 0
-NAME atof -- ascii to floating
-.sp
-.ti 0
-SYNOPSIS jsr r5,atof; subr
-.sp
-.ti 0
-DESCRIPTION atof____
-will convert an ascii stream to a floating
-number returned in fr0.
-
-The subroutine subr____
-(supplied by the caller)
-is called on r5 for each character of the
-ascii stream.
-subr____ should return the character in r0.
-The first character not used in the conversion
-is left in r0.
-.sp
-The only numbers recognized are: an optional minus
-sign followed by a string of digits optionally containing
-one decimal point, then followed optionally by the
-letter "e" followed by a signed integer.
-.sp
-The subroutine subr____ must not disturb any registers.
-.sp
-.ti 0
-FILES kept in /lib/liba.a
-.sp
-.ti 0
-SEE ALSO Calls atoi (III)
-.sp
-.ti 0
-DIAGNOSTICS There are none; overflow results in a very large
-number and garbage characters terminate the scan.
-.sp
-.ti 0
-BUGS The
-routine should accept initial "+", initial blanks, and "E" for "e".
-
-Overflow should be signalled with the carry bit.