Fix html build
This commit is contained in:
parent
3ce88693f5
commit
65277df72d
@ -6,73 +6,40 @@ numeric, control characters, whitespace, and so on), or to perform
|
|||||||
simple character mappings.
|
simple character mappings.
|
||||||
|
|
||||||
The header file @file{ctype.h} defines the macros.
|
The header file @file{ctype.h} defines the macros.
|
||||||
@menu
|
@menu
|
||||||
* isalnum:: Alphanumeric character predicate
|
* isalnum:: Alphanumeric character predicate (isalnum, isalnum_l)
|
||||||
* isalnum_l:: Alphanumeric character predicate
|
* isalpha:: Alphabetic character predicate (isalpha, isalpha_l)
|
||||||
* isalpha:: Alphabetic character predicate
|
* isascii:: ASCII character predicate (isascii, isascii_l)
|
||||||
* isalpha_l:: Alphabetic character predicate
|
* isblank:: Blank character predicate (isblank, isblank_l)
|
||||||
* isascii:: ASCII character predicate
|
* iscntrl:: Control character predicate (iscntrl, iscntrl_l)
|
||||||
* isascii_l:: ASCII character predicate
|
* isdigit:: Decimal digit predicate (isdigit, isdigit_l)
|
||||||
* isblank:: Blank character predicate
|
* islower:: Lowercase character predicate (islower, islower_l)
|
||||||
* isblank_l:: Blank character predicate
|
* isprint:: Printable character predicates (isprint, isprint_l. isgraph, isgraph_l)
|
||||||
* iscntrl:: Control character predicate
|
* ispunct:: Punctuation character predicate (ispunct, ispunct_l)
|
||||||
* iscntrl_l:: Control character predicate
|
* isspace:: Whitespace character predicate (isspace, isspace_l)
|
||||||
* isdigit:: Decimal digit predicate
|
* isupper:: Uppercase character predicate (isupper, isupper_l)
|
||||||
* isdigit_l:: Decimal digit predicate
|
* isxdigit:: Hexadecimal digit predicate (isxdigit, isxdigit_l)
|
||||||
* islower:: Lowercase character predicate
|
* toascii:: Force integers to ASCII range (toascii, toascii_l)
|
||||||
* islower_l:: Lowercase character predicate
|
* tolower:: Translate characters to lowercase (tolower, tolower_l)
|
||||||
* isprint:: Printable character predicates (isprint, isgraph)
|
* toupper:: Translate characters to uppercase (toupper, toupper_l)
|
||||||
* isprint_l:: Printable character predicates (isprint_l, isgraph_l)
|
* iswalnum:: Alphanumeric wide character predicate (iswalnum, iswalnum_l)
|
||||||
* ispunct:: Punctuation character predicate
|
* iswalpha:: Alphabetic wide character predicate (iswalpha, iswalpha_l)
|
||||||
* ispunct_l:: Punctuation character predicate
|
* iswblank:: Blank wide character predicate (iswblank, iswblank_l)
|
||||||
* isspace:: Whitespace character predicate
|
* iswcntrl:: Control wide character predicate (iswcntrl, iswcntrl_l)
|
||||||
* isspace_l:: Whitespace character predicate
|
* iswdigit:: Decimal digit wide character predicate (iswdigit, iswdigit_l)
|
||||||
* isupper:: Uppercase character predicate
|
* iswgraph:: Graphic wide character predicate (iswgraph, iswgraph_l)
|
||||||
* isupper_l:: Uppercase character predicate
|
* iswlower:: Lowercase wide character predicate (iswlower, iswlower_l)
|
||||||
* isxdigit:: Hexadecimal digit predicate
|
* iswprint:: Printable wide character predicate (iswprint, iswprint_l)
|
||||||
* isxdigit_l:: Hexadecimal digit predicate
|
* iswpunct:: Punctuation wide character predicate (iswpunct, iswpunct_l)
|
||||||
* toascii:: Force integers to ASCII range
|
* iswspace:: Whitespace wide character predicate (iswspace, iswspace_l)
|
||||||
* toascii_l:: Force integers to ASCII range
|
* iswupper:: Uppercase wide character predicate (iswupper, iswupper_l)
|
||||||
* tolower:: Translate characters to lowercase
|
* iswxdigit:: Hexadecimal digit wide character predicate (iswxdigit, iswxdigit_l)
|
||||||
* tolower_l:: Translate characters to lowercase
|
* iswctype:: Extensible wide-character test (iswctype, iswctype_l)
|
||||||
* toupper:: Translate characters to uppercase
|
* wctype:: Compute wide-character test type (wctype, wctype_l)
|
||||||
* toupper_l:: Translate characters to uppercase
|
* towlower:: Translate wide characters to lowercase (towlower, towlower_l)
|
||||||
* iswalnum:: Alphanumeric wide character predicate
|
* towupper:: Translate wide characters to uppercase (towupper, towupper_l)
|
||||||
* iswalnum_l:: Alphanumeric wide character predicate
|
* towctrans:: Extensible wide-character translation (towctrans, towctrans_l)
|
||||||
* iswalpha:: Alphabetic wide character predicate
|
* wctrans:: Compute wide-character translation type (wctrans, wctrans_l)
|
||||||
* iswalpha_l:: Alphabetic wide character predicate
|
|
||||||
* iswblank:: Blank wide character predicate
|
|
||||||
* iswblank_l:: Blank wide character predicate
|
|
||||||
* iswcntrl:: Control wide character predicate
|
|
||||||
* iswcntrl_l:: Control wide character predicate
|
|
||||||
* iswdigit:: Decimal digit wide character predicate
|
|
||||||
* iswdigit_l:: Decimal digit wide character predicate
|
|
||||||
* iswgraph:: Graphic wide character predicate
|
|
||||||
* iswgraph_l:: Graphic wide character predicate
|
|
||||||
* iswlower:: Lowercase wide character predicate
|
|
||||||
* iswlower_l:: Lowercase wide character predicate
|
|
||||||
* iswprint:: Printable wide character predicate
|
|
||||||
* iswprint_l:: Printable wide character predicate
|
|
||||||
* iswpunct:: Punctuation wide character predicate
|
|
||||||
* iswpunct_l:: Punctuation wide character predicate
|
|
||||||
* iswspace:: Whitespace wide character predicate
|
|
||||||
* iswspace_l:: Whitespace wide character predicate
|
|
||||||
* iswupper:: Uppercase wide character predicate
|
|
||||||
* iswupper_l:: Uppercase wide character predicate
|
|
||||||
* iswxdigit:: Hexadecimal digit wide character predicate
|
|
||||||
* iswxdigit_l:: Hexadecimal digit wide character predicate
|
|
||||||
* iswctype:: Extensible wide-character test
|
|
||||||
* iswctype_l:: Extensible wide-character test
|
|
||||||
* wctype:: Compute wide-character test type
|
|
||||||
* wctype_l:: Compute wide-character test type
|
|
||||||
* towlower:: Translate wide characters to lowercase
|
|
||||||
* towlower_l:: Translate wide characters to lowercase
|
|
||||||
* towupper:: Translate wide characters to uppercase
|
|
||||||
* towupper_l:: Translate wide characters to uppercase
|
|
||||||
* towctrans:: Extensible wide-character translation
|
|
||||||
* towctrans_l:: Extensible wide-character translation
|
|
||||||
* wctrans:: Compute wide-character translation type
|
|
||||||
* wctrans_l:: Compute wide-character translation type
|
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@page
|
@page
|
||||||
|
Loading…
x
Reference in New Issue
Block a user