Skip to content

asctime : format time as string

#include <time.h>
char *asctime(const struct tm *clock);
char *asctime_r(const struct tm *clock, char *buf);
```### Description
Format the time value at clock into a string of the form Wed Jun 15 11:38:07 1988
The string is generated in a static buffer; each call to asctime overwrites the string generated by previous calls.### Returns
A pointer to the string containing a formatted timestamp.
---
**Authoritative source**: BUSMASTER DITA help source `asctime.dita`, compiled into `BUSMASTER.CHM` with the application.