home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / ccmd / cmnum.cnf < prev    next >
Encoding:
Text File  |  1990-12-18  |  706 b   |  21 lines

  1. _
  2. _ Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3. _ the City of New York.  Permission is granted to any individual or
  4. _ institution to use, copy, or redistribute this software so long as it
  5. _ is not sold for profit, provided this copyright notice is retained.
  6. _
  7. _ Author: Andrew Lowry
  8.  
  9. /* number parsing errors */
  10.  
  11. fnerror(RAD,`Radix must be from 2 to 16')
  12. fnerror(SGN,`Number must be unsigned')
  13. fnerror(NP,`Not a valid number in specified radix')
  14. fnerror(OV,`Number too large for this machine')
  15.  
  16. /* Parse flags for number parse */
  17.  
  18. fnflag(US)        /* unsigned integer parse */
  19. fnflag(BNP)        /* integer can break on non-punctuation */
  20. fnflag(PO)        /* parse-only (no conversion to binary) */
  21.