/
githubmirror
/
file
Обзор
Документация
Войти
/
githubmirror
/
file
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/localtime_r.c
19 строк
448 B
Christos Zoulas
Revert previous
24 сен 2022, 23:30
24 сен 2022, 23:30
13818e8
Код
Авторство
О чём код?
/* $File: localtime_r.c,v 1.4 2022/09/24 20:30:13 christos Exp $ */ #include "file.h" #ifndef lint FILE_RCSID("@(#)$File: localtime_r.c,v 1.4 2022/09/24 20:30:13 christos Exp $") #endif /* lint */ #include <time.h> #include <string.h> /* asctime_r is not thread-safe anyway */ struct tm * localtime_r(const time_t *t, struct tm *tm) { struct tm *tmp = localtime(t); if (tmp == NULL) return NULL; memcpy(tm, tmp, sizeof(*tm)); return tmp; }