stdio.h: Add ucrt vsprintf declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b8681acd46
commit
a68c92d45a
|
@ -159,7 +159,6 @@ int __cdecl vfprintf(FILE*,const char*,__ms_va_list);
|
|||
int __cdecl vfprintf_s(FILE*,const char*,__ms_va_list);
|
||||
int __cdecl vprintf(const char*,__ms_va_list);
|
||||
int __cdecl vprintf_s(const char*,__ms_va_list);
|
||||
int __cdecl vsprintf(char*,const char*,__ms_va_list);
|
||||
int __cdecl vsprintf_s(char*,size_t,const char*,__ms_va_list);
|
||||
unsigned int __cdecl _get_output_format(void);
|
||||
unsigned int __cdecl _set_output_format(void);
|
||||
|
@ -196,10 +195,18 @@ static inline int __cdecl _vscprintf(const char *format, __ms_va_list args)
|
|||
return ret < 0 ? -1 : ret;
|
||||
}
|
||||
|
||||
static inline int __cdecl vsprintf(char *buffer, const char *format, __ms_va_list args)
|
||||
{
|
||||
int ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION,
|
||||
buffer, -1, format, NULL, args);
|
||||
return ret < 0 ? -1 : ret;
|
||||
}
|
||||
|
||||
#else /* _UCRT */
|
||||
|
||||
_ACRTIMP int __cdecl _vscprintf(const char*,__ms_va_list);
|
||||
_ACRTIMP int __cdecl _vsnprintf_s(char*,size_t,size_t,const char*,__ms_va_list);
|
||||
_ACRTIMP int __cdecl vsprintf(char*,const char*,__ms_va_list);
|
||||
|
||||
int __cdecl _vsnprintf(char*,size_t,const char*,__ms_va_list);
|
||||
static inline int vsnprintf(char *buffer, size_t size, const char *format, __ms_va_list args) { return _vsnprintf(buffer,size,format,args); }
|
||||
|
|
Loading…
Reference in New Issue