[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 17:06:41 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rGaa8ab5b21323: [libc] Document which date funcs are needed/done (authored by jeffbailey).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D135501/new/

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.466224.patch
Type: text/x-patch
Size: 1251 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20221008/3e13d157/attachment-0001.bin>


More information about the libc-commits mailing list