_ultoa implemented.

This commit is contained in:
Marcus Meissner 1998-12-14 14:45:21 +00:00 committed by Alexandre Julliard
parent 66da3dc3f6
commit 870dda5bcc
2 changed files with 10 additions and 1 deletions

View File

@ -2045,6 +2045,7 @@ LPSTR __cdecl CRTDLL__strdate (LPSTR date)
{ FIXME (crtdll,"%p stub\n", date);
return 0;
}
/*********************************************************************
* strtime (CRTDLL.299)
*/
@ -2052,3 +2053,11 @@ LPSTR __cdecl CRTDLL__strtime (LPSTR date)
{ FIXME (crtdll,"%p stub\n", date);
return 0;
}
/*********************************************************************
* _ultoa (CRTDLL.311)
*/
LPSTR __cdecl CRTDLL__ultoa(UINT32 x, LPSTR buf, INT32 buflen) {
wsnprintf32A(buf,buflen,"%d",x);
return buf;
}

View File

@ -312,7 +312,7 @@ type win32
308 stub _toupper
309 stub _tzname
310 stub _tzset
311 stub _ultoa
311 cdecl _ultoa(long ptr long) CRTDLL__ultoa
312 stub _ultow
313 stub _umask
314 stub _ungetch