home *** CD-ROM | disk | FTP | other *** search
- _ Author: Andrew Lowry
- _
- _ Columbia University Center for Computing Activities, July 1986.
- _ Copyright (C) 1986, 1987, Trustees of Columbia University in the
- _ City of New York. Permission is granted to any individual or
- _ institution to use, copy, or redistribute this software so long as
- _ it is not sold for profit, provided this copyright notice is
- _ retained.
- _
-
- /* number parsing errors */
-
- fnerror(RAD,`Radix must be from 2 to 16')
- fnerror(SGN,`Number must be unsigned')
- fnerror(NP,`Not a valid number in specified radix')
- fnerror(OV,`Number too large for this machine')
-
- /* Parse flags for number parse */
-
- fnflag(US) /* unsigned integer parse */
- fnflag(BNP) /* integer can break on non-punctuation */
- fnflag(PO) /* parse-only (no conversion to binary) */
-