Switch from time to time_new 1/2:
[reactos.git] / reactos / lib / sdk / crt / time_new / strftime.c
1 /*
2 * COPYRIGHT: LGPL, See LGPL.txt in the top level directory
3 * PROJECT: ReactOS CRT library
4 * FILE: lib/sdk/crt/time/strftime.c
5 * PURPOSE:
6 * PROGRAMER:
7 */
8 #include <precomp.h>
9 #include <tchar.h>
10
11 size_t
12 _tcsftime(_TCHAR *strDest,
13 size_t maxsize,
14 const _TCHAR *format,
15 const struct tm *timeptr)
16 {
17 return 0;
18 }
19