X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fcrtdll%2Ftime%2Fstrftime.c;h=0f5c3b61b3c6439db8caa16f3b0009f1c10dac75;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hp=5c83edfb35b61c4d05a273da0d62bac07ae933fd;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605;p=reactos.git diff --git a/lib/crtdll/time/strftime.c b/lib/crtdll/time/strftime.c index 5c83edf..0f5c3b6 100644 --- a/lib/crtdll/time/strftime.c +++ b/lib/crtdll/time/strftime.c @@ -208,6 +208,9 @@ static size_t _fmt(const char* format, const struct tm* t) return gsize; } +/* + * @implemented + */ size_t strftime(char *s, size_t maxsize, const char *format, const struct tm *t) { @@ -222,6 +225,9 @@ strftime(char *s, size_t maxsize, const char *format, const struct tm *t) return 0; } +/* + * @implemented + */ size_t wcsftime(wchar_t* s, size_t maxsize, const wchar_t* format, const struct tm* t) { char* x;