[libc-commits] [libc] [libc][docs] introduce docgen (PR #87682)
Nick Desaulniers via libc-commits
libc-commits at lists.llvm.org
Thu Apr 4 13:49:35 PDT 2024
================
@@ -0,0 +1,107 @@
+ctype.h:
+ functions:
+ isalnum:
+ returns: int
+ params:
+ - int
+ isalpha:
+ returns: int
+ params:
+ - int
+ isblank:
+ returns: int
+ params:
+ - int
+ # TODO: fill me out!
+fenv.h:
+ macros:
+ - __STDC_VERSION_FENV_H__
+ functions:
+ feclearexcept:
+ returns: int
+ params:
+ - int
+ defined: '7.6.4.1'
----------------
nickdesaulniers wrote:
Perhaps `defined` should be a list. For example, if something is specified by both C and POSIX, maybe it makes sense to refer to BOTH sections?
The C standard can't be hyperlinked to AFAIK unfortunately, but POSIX can be IIRC. Maybe supporting hyperlinking would be nice.
https://github.com/llvm/llvm-project/pull/87682
More information about the libc-commits
mailing list