]> pd.if.org Git - pdclib/blobdiff - functions/time.c
Added template implementation files.
[pdclib] / functions / time.c
diff --git a/functions/time.c b/functions/time.c
new file mode 100644 (file)
index 0000000..997e062
--- /dev/null
@@ -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 */ };