Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git] / libc / docs / ctype.rst
blob828785c9b6708fa25dcd2ff3a666329dba7a97ab
1 .. include:: check.rst
3 =======
4 ctype.h
5 =======
7 Functions
8 =========
10 .. list-table::
11   :widths: auto
12   :align: center
13   :header-rows: 1
15   * - Function
16     - Implemented
17     - C23 Standard Section
18     - POSIX.1-2017 Standard Section
19   * - isalnum
20     - |check|
21     - 7.4.1.1
22     -
23   * - isalpha
24     - |check|
25     - 7.4.1.2
26     -
27   * - isblank
28     - |check|
29     - 7.4.1.3
30     -
31   * - iscntrl
32     - |check|
33     - 7.4.1.4
34     -
35   * - isdigit
36     - |check|
37     - 7.4.1.5
38     -
39   * - isgraph
40     - |check|
41     - 7.4.1.6
42     -
43   * - islower
44     - |check|
45     - 7.4.1.7
46     -
47   * - isprint
48     - |check|
49     - 7.4.1.8
50     -
51   * - ispunct
52     - |check|
53     - 7.4.1.9
54     -
55   * - isspace
56     - |check|
57     - 7.4.1.10
58     -
59   * - isupper
60     - |check|
61     - 7.4.1.11
62     -
63   * - isxdigit
64     - |check|
65     - 7.4.1.12
66     -
67   * - tolower
68     - |check|
69     - 7.4.2.1
70     -
71   * - toupper
72     - |check|
73     - 7.4.2.2
74     -