/
niceSOFT
/
groff
Обзор
Документация
Войти
/
niceSOFT
/
groff
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/curtime.h
36 строк
1 KB
G. Branden Robinson
src/include/: Update geriatric license notices.
06 фев 2026, 03:30
06 фев 2026, 03:30
635556c
Код
Авторство
О чём код?
/* Copyright 2015-2020 Free Software Foundation, Inc. This file is part of groff, the GNU roff typesetting system. groff is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. groff is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <time.h> // Get the current time in broken-down time representation. If the // SOURCE_DATE_EPOCH environment variable is set, then it is used // instead of the real time from the system clock; in this case, the // user is clearly trying to arrange for some kind of reproducible // build, so express the time in UTC. Otherwise, use the real time from // the system clock, and express it relative to the user's time zone. // // In either case, as with gmtime() and localtime(), the return value // points to a statically-allocated struct which might be overwritten by // later calls. struct tm *current_time(); // Local Variables: // fill-column: 72 // mode: C++ // End: // vim: set cindent noexpandtab shiftwidth=2 textwidth=72: