libc: Document strftime in time.h

This commit is contained in:
apio 2022-10-30 17:48:54 +01:00
parent d5a6c7f27f
commit d186d573dd

View File

@ -77,8 +77,8 @@ extern "C"
/* Fills buf with a string representation of time. Thread-safe. */
char* ctime_r(const time_t* time, char buf[26]);
size_t strftime(char* str, size_t max, const char* format, const struct tm* time); // Not implemented.
char* ctime(const time_t* timep); // Not implemented.
/* Fills str with a formatted string representation of time according to the format string. */
size_t strftime(char* str, size_t max, const char* format, const struct tm* time);
#ifdef __cplusplus
}