home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xco212p.zip / CDEF / ctype.def < prev    next >
Text File  |  1995-05-31  |  626b  |  24 lines

  1. (* Copyright (c) xTech 1992,95.  All Rights Reserved *)
  2. <*+ CSTDLIB  *>
  3. <*+ NOHEADER*>
  4. <*+ M2EXTENSIONS *>
  5. DEFINITION MODULE [2] ctype;
  6.  
  7. FROM SYSTEM IMPORT int;
  8.  
  9. PROCEDURE isalnum (c: int): int;
  10. PROCEDURE isalpha (c: int): int;
  11. PROCEDURE iscntrl (c: int): int;
  12. PROCEDURE isdigit (c: int): int;
  13. PROCEDURE isgraph (c: int): int;
  14. PROCEDURE islower (c: int): int;
  15. PROCEDURE isprint (c: int): int;
  16. PROCEDURE ispunct (c: int): int;
  17. PROCEDURE isspace (c: int): int;
  18. PROCEDURE isupper (c: int): int;
  19. PROCEDURE isxdigit(c: int): int;
  20. PROCEDURE tolower (c: int): int;
  21. PROCEDURE toupper (c: int): int;
  22.  
  23. END ctype.
  24.