Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4680 right-hear 1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
#ifndef __dj_include_ctype_h_
3
#define __dj_include_ctype_h_
4
 
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
 
9
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
10
 
11
int	isalnum(int c);
12
int	isalpha(int c);
13
int	iscntrl(int c);
14
int	isdigit(int c);
15
int	isgraph(int c);
16
int	islower(int c);
17
int	isprint(int c);
18
int	ispunct(int c);
19
int	isspace(int c);
20
int	isupper(int c);
21
int	isxdigit(int c);
22
int	tolower(int c);
23
int	toupper(int c);
24
 
25
#ifndef __dj_ENFORCE_FUNCTION_CALLS
26
#include 
27
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
28
 
29
#ifndef __STRICT_ANSI__
30
 
31
#ifndef _POSIX_SOURCE
32
 
33
int	isascii(int c);
34
int	toascii(int c);
35
 
36
#ifndef __dj_ENFORCE_FUNCTION_CALLS
37
#include 
38
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
39
 
40
#endif /* !_POSIX_SOURCE */
41
#endif /* !__STRICT_ANSI__ */
42
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
43
 
44
#ifdef __cplusplus
45
}
46
#endif
47
 
48
#endif /* !__dj_include_ctype_h_ */