home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / ACE / include / stddef.h < prev    next >
Text File  |  1994-10-23  |  395b  |  18 lines

  1. '..Some useful, often used CONST definitions for ACE programs.
  2.  
  3. '..null pointer
  4. CONST NULL = 0&
  5.  
  6. '..boolean values
  7. CONST true = -1&
  8. CONST false = 0&
  9.  
  10. '..maxima & minima
  11. CONST MaxInt       =  2147483647
  12. CONST MinInt       = -2147483648
  13. CONST MaxShort       =  32767        
  14. CONST MinShort       = -32768        
  15. CONST MaxReal      =  9.22337177E+18
  16. CONST MinReal      = -9.22337177E+18
  17. CONST MAXSTRINGLEN =  1024&
  18.