mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +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});
|
|
}
|