Commit fb2273be authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Implemented _vsnprintf by calling wvsnprintfA.

parent 23259ce5
......@@ -322,7 +322,7 @@ import ntdll
@ cdecl _unlink(str) CRTDLL__unlink
@ stub _unloaddll
@ stub _utime
@ stub _vsnprintf
@ cdecl _vsnprintf(ptr long ptr ptr) CRTDLL__vsnprintf
@ stub _vsnwprintf
@ cdecl _wcsdup(wstr) CRTDLL__wcsdup
@ forward _wcsicmp ntdll._wcsicmp
......
......@@ -940,6 +940,14 @@ INT __cdecl CRTDLL_vsprintf( LPSTR buffer, LPCSTR spec, va_list args )
}
/*********************************************************************
* _vsprintf (CRTDLL.@)
*/
INT __cdecl CRTDLL__vsnprintf(LPSTR buffer,DWORD size,LPCSTR spec,va_list args )
{
return wvsnprintfA( buffer, size, spec, args );
}
/*********************************************************************
* vswprintf (CRTDLL.501)
*/
INT __cdecl CRTDLL_vswprintf( LPWSTR buffer, LPCWSTR spec, va_list args )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment