mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 07:07:24 +00:00
8 lines
102 B
C
8 lines
102 B
C
|
#include "time32.h"
|
||
|
#include <time.h>
|
||
|
|
||
|
char *__ctime32(time32_t *t)
|
||
|
{
|
||
|
return ctime(&(time_t){*t});
|
||
|
}
|