[libc-commits] [PATCH] D135501: [libc] Document which date funcs are needed/done
Jeff Bailey via Phabricator via libc-commits
libc-commits at lists.llvm.org
Fri Oct 7 16:59:01 PDT 2022
jeffbailey created this revision.
Herald added subscribers: libc-commits, ecnelises, tschuett, arphaman.
Herald added projects: libc-project, All.
jeffbailey requested review of this revision.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D135501
Files:
libc/docs/date_and_time.rst
libc/docs/index.rst
Index: libc/docs/index.rst
===================================================================
--- libc/docs/index.rst
+++ libc/docs/index.rst
@@ -56,9 +56,10 @@
:maxdepth: 1
:caption: Status
+ date_and_time
+ math
strings
stdio
- math
.. toctree::
:hidden:
Index: libc/docs/date_and_time.rst
===================================================================
--- /dev/null
+++ libc/docs/date_and_time.rst
@@ -0,0 +1,49 @@
+=============
+Date and Time
+=============
+
+ ============= ===
+ Function_Name C99
+ ============= ===
+ clock
+ mktime ✅
+ time
+ asctime ✅
+ ctime
+ gmtime ✅
+ localtime
+ strftime
+ ============= ===
+
+=================== =====
+Function_Name POSIX
+=================== =====
+asctime ✅
+asctime_r ✅
+clock
+clock_getcpuclockid
+clock_getres
+clock_gettime ✅
+clock_nanosleep
+clock_settime
+ctime
+ctime_r
+difftime
+getdate
+gmtime ✅
+gmtime_r ✅
+localtime
+localtime_r
+mktime ✅
+nanosleep ✅
+strftime
+strptime
+time
+timer_create
+timer_delete
+timer_gettime
+timer_getoverrun
+timer_settime
+tzset
+=================== =====
+
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135501.466222.patch
Type: text/x-patch
Size: 1251 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20221007/0fe0269a/attachment.bin>
More information about the libc-commits
mailing list