core.stdc.time
Файл заголовка D для C99.
Этот модуль содержит привязки к выбранным типам и функциям из стандартного заголовка C <time.h>. Обратите внимание, что он не генерируется автоматически и может опускать некоторые типы/функции из исходного заголовка C.
- Лицензия:
- Распространяется по Boost Software License 1.0. (См. прилагаемый файл LICENSE)
- Авторы:
- Sean Kelly, Alex Rønne Petersen
- Источник
- core/stdc/time.d
- Стандарты:
- ISO/IEC 9899:1999 (E)
- pure nothrow @nogc @trusted double difftime(time_t time1, time_t time0);
- nothrow @nogc @system time_t mktime(scope tm* timeptr);
- nothrow @nogc @trusted time_t time(scope time_t* timer);
- nothrow @nogc @system char* asctime(scope const tm* timeptr);
- nothrow @nogc @system char* ctime(scope const time_t* timer);
- nothrow @nogc @system tm* gmtime(scope const time_t* timer);
- nothrow @nogc @system tm* localtime(scope const time_t* timer);
- nothrow @nogc @system size_t strftime(scope char* s, size_t maxsize, scope const char* format, scope const tm* timeptr);
© 1999–2021 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_stdc_time.html