Commit 870dda5b authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

_ultoa implemented.

parent 66da3dc3
......@@ -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;
}
......@@ -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
......
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