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

via libc-commits libc-commits at lists.llvm.org
Mon Feb 16 01:15:58 PST 2026


Author: Marcell Leleszi
Date: 2026-02-16T10:15:53+01:00
New Revision: e316ea188a641bf90031e6ad5774b8e3eeee2c4a

URL: https://github.com/llvm/llvm-project/commit/e316ea188a641bf90031e6ad5774b8e3eeee2c4a
DIFF: https://github.com/llvm/llvm-project/commit/e316ea188a641bf90031e6ad5774b8e3eeee2c4a.diff

LOG: [libc][wctype] Add missing functions to wctype docs (#181478)

#170525

Adds missing wctype.h functions to docs.

Added: 
    

Modified: 
    libc/utils/docgen/wctype.yaml

Removed: 
    


################################################################################
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: ''


        


More information about the libc-commits mailing list