/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/time-util.c
25 строк
470 B
Daniel Wagner
shared: move temperature/timestamp/spinner helpers out of util/types.c
07 авг 2026, 16:15
07 авг 2026, 16:15
5d56a60
Код
Авторство
О чём код?
// SPDX-License-Identifier: LGPL-2.1-or-later /* * This file is part of nvme-cli. */ #include <stdio.h> #include "time-util.h" int shr_format_ts(time_t time_ms, char *ts_buf) { struct tm time_info; time_t time_s, ms; char buf[80]; time_s = time_ms / 1000; ms = time_ms % 1000; gmtime_r(&time_s, &time_info); strftime(buf, sizeof(buf), "%Y-%m-%dD|%H:%M:%S", &time_info); sprintf(ts_buf, "%s:%03llu", buf, (unsigned long long)ms); return 0; }