home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff218.lzh / EdLib / man / ToInt < prev   
Text File  |  1989-06-04  |  622b  |  30 lines

  1. TOINT(3)                   Library Functions                  TOINT(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      toint - return the integer value of a character digit
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int toint(c)
  12.      char c;
  13.  
  14. DESCRIPTION
  15.      Toint treats the character 'c' as a hexadecimal character and
  16.      returns its integer equivalent. Note that this routine may be
  17.      used for decimal, octal and binary digits, as these are proper
  18.      subsets of the hexadecimal character set.
  19.  
  20. DIAGNOSTICS
  21.      If the given character does not represent a hexadecimal digit a
  22.      value of -1 is returned.
  23.  
  24. AUTHOR
  25.      Edwin Hoogerbeets 01/08/88
  26.  
  27.  
  28.  
  29.  
  30.