llvm-project/libc/docs/date_and_time.rst
Jeff Bailey 998d1ebb27 [libc][cleanup] Docs clean up
* Make consistent heading names
 * Factor out |check| into an include for reuse
 * Use it everywhere (No more YES or UTF-8)
 * Remove unneeded summary from pages. People know why they're there.
 * Ensure source location headers everywhere.

Differential Revision: https://reviews.llvm.org/D136016
2022-10-15 15:29:48 +00:00

63 lines
1.0 KiB
ReStructuredText

=======================
Date and Time Functions
=======================
.. include:: check.rst
---------------
Source location
---------------
- The main source for string functions is located at:
``libc/src/time``
---------------------
Implementation Status
---------------------
============= =======
Function_Name C99
============= =======
clock
mktime |check|
time
asctime |check|
ctime
gmtime |check|
localtime
strftime
============= =======
=================== =======
Function_Name POSIX
=================== =======
asctime |check|
asctime_r |check|
clock
clock_getcpuclockid
clock_getres
clock_gettime |check|
clock_nanosleep
clock_settime
ctime
ctime_r
difftime
getdate
gmtime |check|
gmtime_r |check|
localtime
localtime_r
mktime |check|
nanosleep |check|
strftime
strptime
time
timer_create
timer_delete
timer_gettime
timer_getoverrun
timer_settime
tzset
=================== =======