]> pd.if.org Git - pdclib/blob - functions/time/strftime.c
time.h stubs.
[pdclib] / functions / time / strftime.c
1 /* strftime( char * restrict, size_t, const char * restrict, const struct tm * restrict )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <time.h>
8
9 #ifndef REGTEST
10
11 size_t strftime( char * restrict s, size_t maxsize, const char * restrict format, const struct tm * restrict timeptr )
12 {
13     return 0;
14 }
15
16 #endif
17
18 #ifdef TEST
19
20 #include "_PDCLIB_test.h"
21
22 int main( void )
23 {
24     return NO_TESTDRIVER;
25 }
26
27 #endif