Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ctype.tex « ctype « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0971d88c4f46709bfb7cfd2624b9acbfaa06566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@node Ctype
@chapter Character Type Macros and Functions (@file{ctype.h})
This chapter groups macros (which are also available as subroutines)
to classify characters into several categories (alphabetic,
numeric, control characters, whitespace, and so on), or to perform
simple character mappings.

The header file @file{ctype.h} defines the macros.
@menu 
* isalnum::   Alphanumeric character predicate
* isalpha::   Alphabetic character predicate
* isascii::   ASCII character predicate
* iscntrl::   Control character predicate
* isdigit::   Decimal digit predicate
* islower::   Lower-case character predicate
* isprint::   Printable character predicates (isprint, isgraph)
* ispunct::   Punctuation character predicate
* isspace::   Whitespace character predicate
* isupper::   Uppercase character predicate
* isxdigit::  Hexadecimal digit predicate
* toascii::   Force integers to ASCII range
* tolower::   Translate characters to lower case
* toupper::   Translate characters to upper case
@end menu

@page
@include ctype/isalnum.def

@page
@include ctype/isalpha.def

@page
@include ctype/isascii.def

@page
@include ctype/iscntrl.def

@page
@include ctype/isdigit.def

@page
@include ctype/islower.def

@page
@include ctype/isprint.def

@page
@include ctype/ispunct.def

@page
@include ctype/isspace.def

@page
@include ctype/isupper.def

@page
@include ctype/isxdigit.def

@page
@include ctype/toascii.def

@page
@include ctype/tolower.def

@page
@include ctype/toupper.def