Commit 057d9f23 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

New stubs strdate, strtime.

parent afda9a3a
......@@ -2038,3 +2038,17 @@ INT32 CRTDLL_wcstol(LPWSTR s,LPWSTR *end,INT32 base) {
if (end) *end = s+(endA-sA); /* pointer magic checked. */
return ret;
}
/*********************************************************************
* strdate (CRTDLL.283)
*/
LPSTR __cdecl CRTDLL__strdate (LPSTR date)
{ FIXME (crtdll,"%p stub\n", date);
return 0;
}
/*********************************************************************
* strtime (CRTDLL.299)
*/
LPSTR __cdecl CRTDLL__strtime (LPSTR date)
{ FIXME (crtdll,"%p stub\n", date);
return 0;
}
......@@ -284,7 +284,7 @@ type win32
280 cdecl _stat (str ptr) CRTDLL__stat
281 stub _statusfp
282 cdecl _strcmpi(str str) CRTDLL__strcmpi
283 stub _strdate
283 cdecl _strdate(str) CRTDLL__strdate
284 stub _strdec
285 cdecl _strdup(str) CRTDLL__strdup
286 stub _strerror
......@@ -300,7 +300,7 @@ type win32
296 stub _strrev
297 stub _strset
298 stub _strspnp
299 stub _strtime
299 cdecl _strtime(str) CRTDLL__strtime
300 cdecl _strupr(str) CRTDLL__strupr
301 stub _swab
302 stub _sys_errlist
......
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