Time, clock and date functions (time.h)

Header {z88dk}/include/time.h
Source {z88dk}/z88dk/libsrc/time
Include #include <time.h>
Linking n/a
Compile n/a
Comments

Time functions. Not all the platforms are supported, and only few functions are supported on platforms other than the Cambridge Z88, for now.

API

time_t time(time_t *)

'tm' structure

struct tm {
  int tm_sec;
  int tm_min;
  int tm_hour;
  int tm_mday;
  int tm_mon;
  int tm_year;
  int tm_wday;
  int tm_yday;
  int tm_isdst;
};

struct tm *gmtime(time_t *t)

struct tm *localtime(time_t *t)

time_t mktime(struct tm *tp)

clock_t clock(void)

 
library/time.txt · Last modified: 2007/06/20 10:09 by stefano
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki