Namespaces
Variants
Views
Actions

std::gmtime

From cppreference.com
< cpp‎ | chrono‎ | c
Revision as of 18:00, 2 August 2011 by P12bot (Talk | contribs)

Template:cpp/chrono/c/sidebar

Defined in header <ctime>
struct tm *gmtime( const time_t *time );

Converts given time since epoch as time_t value into calendar time, expressed in Coordinated Universal Time (UTC).

Contents

Parameters

time - pointer to a time_t object to convert

Return value

pointer to a static internal tm object on success, or Template:cpp otherwise. The structure is shared between gmtime() and localtime() and is overwritten on each invocation.

Example

Template:example cpp

See also

Template:cpp/chrono/c/dcl list localtime