[libc-commits] [libc] [libc][wctype] Add missing functions to wctype docs (PR #181478)
Marcell Leleszi via libc-commits
libc-commits at lists.llvm.org
Sat Feb 14 06:11:11 PST 2026
https://github.com/mleleszi updated https://github.com/llvm/llvm-project/pull/181478
>From ec7e7fb981d0e98ec989e4634c8fb2dd542956c0 Mon Sep 17 00:00:00 2001
From: Marcell Leleszi <mleleszi at google.com>
Date: Thu, 8 Jan 2026 16:08:35 +0000
Subject: [PATCH 1/2] Add missing functions to wctype.h docs
---
libc/utils/docgen/wctype.yaml | 57 ++++++++++++++++++++++++++++++++++-
1 file changed, 56 insertions(+), 1 deletion(-)
diff --git a/libc/utils/docgen/wctype.yaml b/libc/utils/docgen/wctype.yaml
index 8675cbe500da3..27eb428e7cb3a 100644
--- a/libc/utils/docgen/wctype.yaml
+++ b/libc/utils/docgen/wctype.yaml
@@ -1,36 +1,91 @@
functions:
iswalnum:
c-definition: 7.32.2.1.1
+ in-latest-posix: ''
+ iswalnum_l:
+ in-latest-posix: ''
iswalpha:
c-definition: 7.32.2.1.2
+ in-latest-posix: ''
+ iswalpha_l:
+ in-latest-posix: ''
iswblank:
+ c-definition: 7.32.2.1.3
+ in-latest-posix: ''
+ iswblank_l:
+ in-latest-posix: ''
+ iswcntrl:
c-definition: 7.32.2.1.4
+ in-latest-posix: ''
+ iswcntrl_l:
+ in-latest-posix: ''
iswctype:
c-definition: 7.32.2.2.1
+ in-latest-posix: ''
+ iswctype_l:
+ in-latest-posix: ''
iswdigit:
c-definition: 7.32.2.1.5
+ in-latest-posix: ''
+ iswdigit_l:
+ in-latest-posix: ''
iswgraph:
c-definition: 7.32.2.1.6
+ in-latest-posix: ''
+ iswgraph_l:
+ in-latest-posix: ''
iswlower:
c-definition: 7.32.2.1.7
+ in-latest-posix: ''
+ iswlower_l:
+ in-latest-posix: ''
iswprint:
c-definition: 7.32.2.1.8
+ in-latest-posix: ''
+ iswprint_l:
+ in-latest-posix: ''
iswpunct:
c-definition: 7.32.2.1.9
+ in-latest-posix: ''
+ iswpunct_l:
+ in-latest-posix: ''
iswspace:
c-definition: 7.32.2.1.10
+ in-latest-posix: ''
+ iswspace_l:
+ in-latest-posix: ''
iswupper:
c-definition: 7.32.2.1.11
+ in-latest-posix: ''
+ iswupper_l:
+ in-latest-posix: ''
iswxdigit:
c-definition: 7.32.2.1.12
+ in-latest-posix: ''
+ iswxdigit_l:
+ in-latest-posix: ''
towctrans:
c-definition: 7.32.3.2.1
+ in-latest-posix: ''
+ towctrans_l:
+ in-latest-posix: ''
towlower:
c-definition: 7.32.3.1.1
+ in-latest-posix: ''
+ towlower_l:
+ in-latest-posix: ''
towupper:
c-definition: 7.32.3.1.2
+ in-latest-posix: ''
+ towupper_l:
+ in-latest-posix: ''
wctrans:
c-definition: 7.32.3.2.2
+ in-latest-posix: ''
+ wctrans_l:
+ in-latest-posix: ''
wctype:
c-definition: 7.32.2.2.2
-
+ in-latest-posix: ''
+ wctype_l:
+ in-latest-posix: ''
\ No newline at end of file
>From 7ad643d8e118b8f0382066cbfa0c03c8d80a214c Mon Sep 17 00:00:00 2001
From: Marcell Leleszi <mleleszi at google.com>
Date: Sat, 14 Feb 2026 14:09:04 +0000
Subject: [PATCH 2/2] Add missing new line
---
libc/utils/docgen/wctype.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/utils/docgen/wctype.yaml b/libc/utils/docgen/wctype.yaml
index 27eb428e7cb3a..c57ecd7d283ab 100644
--- a/libc/utils/docgen/wctype.yaml
+++ b/libc/utils/docgen/wctype.yaml
@@ -88,4 +88,4 @@ functions:
c-definition: 7.32.2.2.2
in-latest-posix: ''
wctype_l:
- in-latest-posix: ''
\ No newline at end of file
+ in-latest-posix: ''
More information about the libc-commits
mailing list