home *** CD-ROM | disk | FTP | other *** search
- #ifndef _INCLUDE_CTYPE_H
- #define _INCLUDE_CTYPE_H
-
- /*
- ** $VER: ctype.h 10.1 (19.7.95)
- ** Includes Release 40.15
- **
- ** '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
- ** All Rights Reserved
- */
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- int isalnum(int);
- int isalpha(int);
- int iscntrl(int);
- int isdigit(int);
- int isgraph(int);
- int islower(int);
- int isprint(int);
- int ispunct(int);
- int isspace(int);
- int isupper(int);
- int isxdigit(int);
- int tolower(int);
- int toupper(int);
- int which_xdigit(char);
-
- #ifdef __cplusplus
- }
- #endif
-
-
- #endif