[libc-commits] [libc] [libc][wctype] Add missing functions to wctype docs (PR #181478)

via libc-commits libc-commits at lists.llvm.org
Sat Feb 14 06:17:50 PST 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: Marcell Leleszi (mleleszi)

<details>
<summary>Changes</summary>

#<!-- -->170525

Adds missing wctype.h functions to docs.

---
Full diff: https://github.com/llvm/llvm-project/pull/181478.diff


1 Files Affected:

- (modified) libc/utils/docgen/wctype.yaml (+56-1) 


``````````diff
diff --git a/libc/utils/docgen/wctype.yaml b/libc/utils/docgen/wctype.yaml
index 8675cbe500da3..c57ecd7d283ab 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: ''

``````````

</details>


https://github.com/llvm/llvm-project/pull/181478


More information about the libc-commits mailing list