home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / psion / opp16f_zip / INCLUDE / OS / CHAR.OPH < prev    next >
Encoding:
Text File  |  1995-12-21  |  464 b   |  20 lines

  1. #ifndef OS_CHAR_OPH
  2. #define OS_CHAR_OPH
  3.  
  4. #define CharIsAlphaNumeric    $97
  5. #define CharIsAlphabetic    $96
  6. #define CharIsControl        $9D
  7. #define CharIsDigit        $93
  8. #define CharIsGraphic        $9C
  9. #define CharIsHexDigit        $94
  10. #define CharIsLowerCase        $99
  11. #define CharIsPrintable        $95
  12. #define CharIsPunctuation    $9B
  13. #define CharIsSpace        $9A
  14. #define CharIsUpperCase        $98
  15. #define CharToFoldedChar    $A0
  16. #define CharToLowerChar        $9F
  17. #define CharToUpperChar        $9E
  18.  
  19. #endif
  20.