core.stdc.time

D header file for C99.

This module contains bindings to selected types and functions from the standard C header <_time.h>. Note that this is not automatically generated, and may omit some types/functions from the original C header.

Public Imports

core.sys.posix.stdc.time
public import core.sys.posix.stdc.time;
Undocumented in source.
core.sys.windows.stdc.time
public import core.sys.windows.stdc.time;
Undocumented in source.

Members

Functions

asctime
char* asctime(tm* timeptr)
ctime
char* ctime(time_t* timer)
difftime
double difftime(time_t time1, time_t time0)
gmtime
tm* gmtime(time_t* timer)
localtime
tm* localtime(time_t* timer)
mktime
time_t mktime(tm* timeptr)
strftime
size_t strftime(char* s, size_t maxsize, char* format, tm* timeptr)
time
time_t time(time_t* timer)

Meta

License

Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)

Standards

ISO/IEC 9899:1999 (E)

Authors

Sean Kelly, Alex Rønne Petersen