X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Ftime.c;fp=functions%2Ftime.c;h=997e062cc535bed6220e0309ba0a9c30c632b09f;hp=0000000000000000000000000000000000000000;hb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;hpb=34b76b9d65477be9c7d35cd254f44be85b3786b4 diff --git a/functions/time.c b/functions/time.c new file mode 100644 index 0000000..997e062 --- /dev/null +++ b/functions/time.c @@ -0,0 +1,17 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +char * asctime( const struct tm * tptr ) { /* TODO */ }; +clock_t clock( void ) { /* TODO */ }; +char * ctime( const time_t * tod ) { /* TODO */ }; +double difftime( time_t t1, time_t t0 ) { /* TODO */ }; +struct tm * gmtime( const time_t * tod ) { /* TODO */ }; +struct tm * localtime( const time_t * tod ) { /* TODO */ }; +time_t mktime( struct tm * tptr ) { /* TODO */ }; +size_t strftime( char * restrict s, size_t n, const char * restrict format, + const struct tm * restrict tptr ) { /* TODO */ }; +time_t time( time_t * tod ) { /* TODO */ };