diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-12-15 09:38:53 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-12-15 09:39:34 -0500 |
commit | f95a4a932476be2ba99e2fd081e8d2bc6ea12813 (patch) | |
tree | 75f67192cb2d7b7b575c94edda318e475239b63c /newlib/libc/ctype/ctype.tex | |
parent | f60aca96985e68c7d8a52eb7bc955fb80e132f73 (diff) |
Import newlib and create makefile
Diffstat (limited to 'newlib/libc/ctype/ctype.tex')
-rw-r--r-- | newlib/libc/ctype/ctype.tex | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/newlib/libc/ctype/ctype.tex b/newlib/libc/ctype/ctype.tex new file mode 100644 index 0000000..a0971d8 --- /dev/null +++ b/newlib/libc/ctype/ctype.tex @@ -0,0 +1,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 + + |