reactos/lib/sdk/crt/time/strftime.c
Timo Kreuzer 9ea495ba33 Create a branch for header work.
svn path=/branches/header-work/; revision=45691
2010-02-26 22:57:55 +00:00

19 lines
372 B
C

/*
* COPYRIGHT: LGPL, See LGPL.txt in the top level directory
* PROJECT: ReactOS CRT library
* FILE: lib/sdk/crt/time/strftime.c
* PURPOSE:
* PROGRAMER:
*/
#include <precomp.h>
#include <tchar.h>
size_t
_tcsftime(_TCHAR *strDest,
size_t maxsize,
const _TCHAR *format,
const struct tm *timeptr)
{
return 0;
}