mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 05:22:57 +00:00
stub some missing functions
svn path=/trunk/; revision=39264
This commit is contained in:
parent
9caa5c511f
commit
faf395d839
3 changed files with 35 additions and 0 deletions
|
@ -408,6 +408,7 @@
|
||||||
<file>strspn.c</file>
|
<file>strspn.c</file>
|
||||||
<file>strstr.c</file>
|
<file>strstr.c</file>
|
||||||
<file>strtod.c</file>
|
<file>strtod.c</file>
|
||||||
|
<file>strtoi64.c</file>
|
||||||
<file>strtok.c</file>
|
<file>strtok.c</file>
|
||||||
<file>strtol.c</file>
|
<file>strtol.c</file>
|
||||||
<file>strtoul.c</file>
|
<file>strtoul.c</file>
|
||||||
|
|
12
reactos/lib/sdk/crt/string/strtoi64.c
Normal file
12
reactos/lib/sdk/crt/string/strtoi64.c
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#include <precomp.h>
|
||||||
|
|
||||||
|
|
||||||
|
__int64
|
||||||
|
_strtoi64(const char *nptr, char **endptr, int base)
|
||||||
|
{
|
||||||
|
TRACE("_strtoi64 is UNIMPLEMENTED\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* EOF */
|
|
@ -45,4 +45,26 @@ _wtoi64 (const wchar_t *nptr)
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
__int64
|
||||||
|
_wcstoi64 (const wchar_t *nptr, wchar_t **endptr, int base)
|
||||||
|
{
|
||||||
|
TRACE("_wcstoi64 is UNIMPLEMENTED\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
unsigned __int64
|
||||||
|
_wcstoui64 (const wchar_t *nptr, wchar_t **endptr, int base)
|
||||||
|
{
|
||||||
|
TRACE("_wcstoui64 is UNIMPLEMENTED\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue