X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fcrtdll%2Fstdio%2Fvsprintf.c;h=13cda16d11a9e2182b568f204e953b6b844f0471;hb=HEAD;hp=52e899eafa85335aa32bc6a3813bbed83d02be53;hpb=1334f77b1ecef00ac31076ce6bf22bdfeb82d347;p=reactos.git diff --git a/lib/crtdll/stdio/vsprintf.c b/lib/crtdll/stdio/vsprintf.c index 52e899e..13cda16 100644 --- a/lib/crtdll/stdio/vsprintf.c +++ b/lib/crtdll/stdio/vsprintf.c @@ -1,9 +1,12 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ -#include -#include +#include +#include #include -#include +#include +/* + * @implemented + */ int vsprintf(char *str, const char *fmt, va_list ap) { @@ -19,6 +22,9 @@ vsprintf(char *str, const char *fmt, va_list ap) return len; } +/* + * @implemented + */ int vswprintf(wchar_t *str, const wchar_t *fmt, va_list ap) { @@ -35,6 +41,9 @@ vswprintf(wchar_t *str, const wchar_t *fmt, va_list ap) } +/* + * @implemented + */ int _vsnprintf(char *str, size_t maxlen, const char *fmt, va_list ap) { @@ -50,6 +59,9 @@ _vsnprintf(char *str, size_t maxlen, const char *fmt, va_list ap) return len; } +/* + * @implemented + */ int _vsnwprintf(wchar_t *str, size_t maxlen, const wchar_t *fmt, va_list ap) {