[libc-commits] [libc] 47f7daa - [libc][docs] Add glob implementation status doc and include in CMakeLists (#126923)

via libc-commits libc-commits at lists.llvm.org
Mon Mar 17 10:05:53 PDT 2025


Author: Prashanth
Date: 2025-03-17T13:05:50-04:00
New Revision: 47f7daab06e4e83f64a1b268da7ada4f50d50349

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

LOG: [libc][docs] Add glob implementation status doc and include in CMakeLists (#126923)

These changes tracks `glob.h` for the implementation status of functions
and macros, with respect to the issue ( #122006 ) .

cc @nickdesaulniers

Added: 
    libc/utils/docgen/glob.yaml

Modified: 
    libc/docs/CMakeLists.txt
    libc/docs/headers/index.rst

Removed: 
    


################################################################################
diff  --git a/libc/docs/CMakeLists.txt b/libc/docs/CMakeLists.txt
index 4ef0e920de683..fb72af02339e1 100644
--- a/libc/docs/CMakeLists.txt
+++ b/libc/docs/CMakeLists.txt
@@ -43,6 +43,7 @@ if (SPHINX_FOUND)
       errno
       fenv
       float
+      glob
       inttypes
       locale
       net/if

diff  --git a/libc/docs/headers/index.rst b/libc/docs/headers/index.rst
index 003ce2edca977..b5f1e4dae2e7a 100644
--- a/libc/docs/headers/index.rst
+++ b/libc/docs/headers/index.rst
@@ -14,6 +14,7 @@ Implementation Status
    errno
    fenv
    float
+   glob
    inttypes
    locale
    math/index.rst

diff  --git a/libc/utils/docgen/glob.yaml b/libc/utils/docgen/glob.yaml
new file mode 100644
index 0000000000000..730d6a638132a
--- /dev/null
+++ b/libc/utils/docgen/glob.yaml
@@ -0,0 +1,28 @@
+macros:
+  GLOB_APPEND:
+    in-latest-posix: ''
+  GLOB_DOOFFS:
+    in-latest-posix: ''
+  GLOB_ERR:
+    in-latest-posix: ''
+  GLOB_MARK:
+    in-latest-posix: ''
+  GLOB_NOCHECK:
+    in-latest-posix: ''
+  GLOB_NOESCAPE:
+    in-latest-posix: ''
+  GLOB_NOSORT:
+    in-latest-posix: ''
+  GLOB_ABORTED:
+    in-latest-posix: ''
+  GLOB_NOMATCH:
+    in-latest-posix: ''
+  GLOB_NOSPACE:
+    in-latest-posix: ''
+
+functions:
+  glob:
+    in-latest-posix: ''
+  globfree:
+    in-latest-posix: ''
+    


        


More information about the libc-commits mailing list