[libc-commits] [libc] aa8ab5b - [libc] Document which date funcs are needed/done
Jeff Bailey via libc-commits
libc-commits at lists.llvm.org
Fri Oct 7 17:06:31 PDT 2022
Author: Jeff Bailey
Date: 2022-10-08T00:06:22Z
New Revision: aa8ab5b21323bd9bfb0393aa3bae677b5d91975f
URL: https://github.com/llvm/llvm-project/commit/aa8ab5b21323bd9bfb0393aa3bae677b5d91975f
DIFF: https://github.com/llvm/llvm-project/commit/aa8ab5b21323bd9bfb0393aa3bae677b5d91975f.diff
LOG: [libc] Document which date funcs are needed/done
Reviewed By: rtenneti
Differential Revision: https://reviews.llvm.org/D135501
Added:
libc/docs/date_and_time.rst
Modified:
libc/docs/index.rst
Removed:
################################################################################
diff --git a/libc/docs/date_and_time.rst b/libc/docs/date_and_time.rst
new file mode 100644
index 0000000000000..1e001a72c004e
--- /dev/null
+++ b/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
+
diff time
+getdate
+gmtime ✅
+gmtime_r ✅
+localtime
+localtime_r
+mktime ✅
+nanosleep ✅
+strftime
+strptime
+time
+timer_create
+timer_delete
+timer_gettime
+timer_getoverrun
+timer_settime
+tzset
+=================== =====
+
diff --git a/libc/docs/index.rst b/libc/docs/index.rst
index d7d3b6ed47e41..0031c81a1df51 100644
--- a/libc/docs/index.rst
+++ b/libc/docs/index.rst
@@ -56,9 +56,10 @@ stages there is no ABI stability in any form.
:maxdepth: 1
:caption: Status
+ date_and_time
+ math
strings
stdio
- math
.. toctree::
:hidden:
More information about the libc-commits
mailing list