2000-06-23 18:16:30 +02:00
|
|
|
/*
|
|
|
|
* NTDLL string functions
|
|
|
|
*
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
2001-01-22 03:17:29 +01:00
|
|
|
* Copyright 2000 Jon Griffiths
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
* Copyright 2003 Thomas Mertes
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
#include "winternl.h"
|
|
|
|
|
2000-06-23 18:16:30 +02:00
|
|
|
|
|
|
|
/*********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* _memicmp (NTDLL.@)
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
2002-05-16 20:58:47 +02:00
|
|
|
INT __cdecl NTDLL__memicmp( LPCSTR s1, LPCSTR s2, DWORD len )
|
2000-06-23 18:16:30 +02:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
while (len--)
|
|
|
|
{
|
|
|
|
if ((ret = tolower(*s1) - tolower(*s2))) break;
|
|
|
|
s1++;
|
|
|
|
s2++;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
|
2000-06-23 18:16:30 +02:00
|
|
|
/*********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* _strupr (NTDLL.@)
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
|
|
|
LPSTR __cdecl _strupr( LPSTR str )
|
|
|
|
{
|
|
|
|
LPSTR ret = str;
|
|
|
|
for ( ; *str; str++) *str = toupper(*str);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
|
2000-06-23 18:16:30 +02:00
|
|
|
/*********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* _strlwr (NTDLL.@)
|
2000-06-23 18:16:30 +02:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* convert a string in place to lowercase
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
|
|
|
LPSTR __cdecl _strlwr( LPSTR str )
|
|
|
|
{
|
|
|
|
LPSTR ret = str;
|
|
|
|
for ( ; *str; str++) *str = tolower(*str);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
* _ultoa (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts an unsigned long integer to a string.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* RETURNS
|
|
|
|
* Always returns str.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Converts value to a '\0' terminated string which is copied to str.
|
|
|
|
* The maximum length of the copied str is 33 bytes.
|
|
|
|
* Does not check if radix is in the range of 2 to 36.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
char * __cdecl _ultoa(
|
|
|
|
unsigned long value, /* [I] Value to be converted */
|
|
|
|
char *str, /* [O] Destination for the converted value */
|
|
|
|
int radix) /* [I] Number base for conversion */
|
2000-06-23 18:16:30 +02:00
|
|
|
{
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
char buffer[33];
|
|
|
|
char *pos;
|
|
|
|
int digit;
|
2000-06-23 18:16:30 +02:00
|
|
|
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
pos = &buffer[32];
|
|
|
|
*pos = '\0';
|
|
|
|
|
|
|
|
do {
|
|
|
|
digit = value % radix;
|
|
|
|
value = value / radix;
|
|
|
|
if (digit < 10) {
|
|
|
|
*--pos = '0' + digit;
|
|
|
|
} else {
|
|
|
|
*--pos = 'a' + digit - 10;
|
|
|
|
} /* if */
|
|
|
|
} while (value != 0L);
|
|
|
|
|
|
|
|
memcpy(str, pos, &buffer[32] - pos + 1);
|
|
|
|
return str;
|
2000-06-23 18:16:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
* _ltoa (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts a long integer to a string.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* RETURNS
|
|
|
|
* Always returns str.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Converts value to a '\0' terminated string which is copied to str.
|
|
|
|
* The maximum length of the copied str is 33 bytes. If radix
|
|
|
|
* is 10 and value is negative, the value is converted with sign.
|
|
|
|
* Does not check if radix is in the range of 2 to 36.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
char * __cdecl _ltoa(
|
|
|
|
long value, /* [I] Value to be converted */
|
|
|
|
char *str, /* [O] Destination for the converted value */
|
|
|
|
int radix) /* [I] Number base for conversion */
|
2000-06-23 18:16:30 +02:00
|
|
|
{
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
unsigned long val;
|
|
|
|
int negative;
|
|
|
|
char buffer[33];
|
|
|
|
char *pos;
|
|
|
|
int digit;
|
|
|
|
|
|
|
|
if (value < 0 && radix == 10) {
|
|
|
|
negative = 1;
|
|
|
|
val = -value;
|
|
|
|
} else {
|
|
|
|
negative = 0;
|
|
|
|
val = value;
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
pos = &buffer[32];
|
|
|
|
*pos = '\0';
|
|
|
|
|
|
|
|
do {
|
|
|
|
digit = val % radix;
|
|
|
|
val = val / radix;
|
|
|
|
if (digit < 10) {
|
|
|
|
*--pos = '0' + digit;
|
|
|
|
} else {
|
|
|
|
*--pos = 'a' + digit - 10;
|
|
|
|
} /* if */
|
|
|
|
} while (val != 0L);
|
|
|
|
|
|
|
|
if (negative) {
|
|
|
|
*--pos = '-';
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
memcpy(str, pos, &buffer[32] - pos + 1);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _itoa (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts an integer to a string.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* RETURNS
|
|
|
|
* Always returns str.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Converts value to a '\0' terminated string which is copied to str.
|
|
|
|
* The maximum length of the copied str is 33 bytes. If radix
|
|
|
|
* is 10 and value is negative, the value is converted with sign.
|
|
|
|
* Does not check if radix is in the range of 2 to 36.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
*/
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
char * __cdecl _itoa(
|
|
|
|
int value, /* [I] Value to be converted */
|
|
|
|
char *str, /* [O] Destination for the converted value */
|
|
|
|
int radix) /* [I] Number base for conversion */
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
{
|
|
|
|
return _ltoa(value, str, radix);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _ui64toa (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts a large unsigned integer to a string.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* RETURNS
|
|
|
|
* Always returns str.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Converts value to a '\0' terminated string which is copied to str.
|
|
|
|
* The maximum length of the copied str is 65 bytes.
|
|
|
|
* Does not check if radix is in the range of 2 to 36.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
*/
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
char * __cdecl _ui64toa(
|
|
|
|
ULONGLONG value, /* [I] Value to be converted */
|
|
|
|
char *str, /* [O] Destination for the converted value */
|
|
|
|
int radix) /* [I] Number base for conversion */
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
{
|
|
|
|
char buffer[65];
|
|
|
|
char *pos;
|
|
|
|
int digit;
|
|
|
|
|
|
|
|
pos = &buffer[64];
|
|
|
|
*pos = '\0';
|
|
|
|
|
|
|
|
do {
|
|
|
|
digit = value % radix;
|
|
|
|
value = value / radix;
|
|
|
|
if (digit < 10) {
|
|
|
|
*--pos = '0' + digit;
|
|
|
|
} else {
|
|
|
|
*--pos = 'a' + digit - 10;
|
|
|
|
} /* if */
|
|
|
|
} while (value != 0L);
|
|
|
|
|
|
|
|
memcpy(str, pos, &buffer[64] - pos + 1);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _i64toa (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts a large integer to a string.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* RETURNS
|
|
|
|
* Always returns str.
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* NOTES
|
|
|
|
* Converts value to a '\0' terminated string which is copied to str.
|
|
|
|
* The maximum length of the copied str is 65 bytes. If radix
|
|
|
|
* is 10 and value is negative, the value is converted with sign.
|
|
|
|
* Does not check if radix is in the range of 2 to 36.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
|
|
|
*
|
|
|
|
* DIFFERENCES
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
* - The native DLL converts negative values (for base 10) wrong:
|
|
|
|
* -1 is converted to -18446744073709551615
|
|
|
|
* -2 is converted to -18446744073709551614
|
|
|
|
* -9223372036854775807 is converted to -9223372036854775809
|
|
|
|
* -9223372036854775808 is converted to -9223372036854775808
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* The native msvcrt _i64toa function and our ntdll _i64toa function
|
|
|
|
* do not have this bug.
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
*/
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
char * __cdecl _i64toa(
|
|
|
|
LONGLONG value, /* [I] Value to be converted */
|
|
|
|
char *str, /* [O] Destination for the converted value */
|
|
|
|
int radix) /* [I] Number base for conversion */
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
{
|
|
|
|
ULONGLONG val;
|
|
|
|
int negative;
|
|
|
|
char buffer[65];
|
|
|
|
char *pos;
|
|
|
|
int digit;
|
|
|
|
|
|
|
|
if (value < 0 && radix == 10) {
|
|
|
|
negative = 1;
|
|
|
|
val = -value;
|
|
|
|
} else {
|
|
|
|
negative = 0;
|
|
|
|
val = value;
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
pos = &buffer[64];
|
|
|
|
*pos = '\0';
|
|
|
|
|
|
|
|
do {
|
|
|
|
digit = val % radix;
|
|
|
|
val = val / radix;
|
|
|
|
if (digit < 10) {
|
|
|
|
*--pos = '0' + digit;
|
|
|
|
} else {
|
|
|
|
*--pos = 'a' + digit - 10;
|
|
|
|
} /* if */
|
|
|
|
} while (val != 0L);
|
|
|
|
|
|
|
|
if (negative) {
|
|
|
|
*--pos = '-';
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
memcpy(str, pos, &buffer[64] - pos + 1);
|
|
|
|
return str;
|
2000-06-23 18:16:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
* _atoi64 (NTDLL.@)
|
|
|
|
*
|
|
|
|
* Converts a string to a large integer.
|
|
|
|
*
|
- Implement RtlDowncaseUnicodeString, RtlUniform, iswdigit, iswlower,
iswspace, iswxdigit.
- Fixed RtlInt64ToUnicodeString and RtlIntegerToUnicodeString.
- According to tests RtlAppendUnicodeStringToString leaves the
destination unchanged when the source length is 0 (FIXED).
- Documentation updates in RtlExtendedMagicDivide,
RtlLargeIntegerToChar, RtlInt64ToUnicodeString, RtlUpperChar,
RtlUpperString, RtlUpcaseUnicodeChar, RtlCharToInteger,
RtlIntegerToChar, RtlUnicodeStringToInteger,
RtlIntegerToUnicodeString, _ultoa, _ltoa, _itoa, _ui64toa, _i64toa,
_atoi64, _ultow, _ltow, _itow, _ui64tow, _i64tow, _wtol, _wtoi,
_wtoi64.
2003-03-22 01:20:58 +01:00
|
|
|
* PARAMS
|
|
|
|
* str [I] Wstring to be converted
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* On success it returns the integer value otherwise it returns 0.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Accepts: {whitespace} [+|-] {digits}
|
|
|
|
* No check is made for value overflow, only the lower 64 bits are assigned.
|
|
|
|
* If str is NULL it crashes, as the native function does.
|
2000-06-23 18:16:30 +02:00
|
|
|
*/
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
LONGLONG __cdecl _atoi64( char *str )
|
2000-06-23 18:16:30 +02:00
|
|
|
{
|
Implement _itoa, _ltoa, _ultoa, _i64toa, _ui64toa, _itow, _ltow,
_ultow, _i64tow, _ui64tow, _atoi64, _wtoi, _wtol, _wtoi64.
2003-03-12 21:16:07 +01:00
|
|
|
ULONGLONG RunningTotal = 0;
|
|
|
|
char bMinus = 0;
|
|
|
|
|
|
|
|
while (*str == ' ' || (*str >= '\011' && *str <= '\015')) {
|
|
|
|
str++;
|
|
|
|
} /* while */
|
|
|
|
|
|
|
|
if (*str == '+') {
|
|
|
|
str++;
|
|
|
|
} else if (*str == '-') {
|
|
|
|
bMinus = 1;
|
|
|
|
str++;
|
|
|
|
} /* if */
|
|
|
|
|
|
|
|
while (*str >= '0' && *str <= '9') {
|
|
|
|
RunningTotal = RunningTotal * 10 + *str - '0';
|
|
|
|
str++;
|
|
|
|
} /* while */
|
|
|
|
|
|
|
|
return bMinus ? -RunningTotal : RunningTotal;
|
2000-06-23 18:16:30 +02:00
|
|
|
}
|
2001-01-22 03:17:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* _splitpath (NTDLL.@)
|
2001-01-22 03:17:29 +01:00
|
|
|
*/
|
|
|
|
void __cdecl _splitpath(const char* inpath, char * drv, char * dir,
|
|
|
|
char* fname, char * ext )
|
|
|
|
{
|
|
|
|
/* Modified PD code from 'snippets' collection. */
|
|
|
|
char ch, *ptr, *p;
|
|
|
|
char pathbuff[MAX_PATH], *path=pathbuff;
|
|
|
|
|
|
|
|
strcpy(pathbuff, inpath);
|
|
|
|
|
|
|
|
/* convert slashes to backslashes for searching */
|
|
|
|
for (ptr = (char*)path; *ptr; ++ptr)
|
|
|
|
if ('/' == *ptr)
|
|
|
|
*ptr = '\\';
|
|
|
|
|
|
|
|
/* look for drive spec */
|
|
|
|
if ('\0' != (ptr = strchr(path, ':')))
|
|
|
|
{
|
|
|
|
++ptr;
|
|
|
|
if (drv)
|
|
|
|
{
|
|
|
|
strncpy(drv, path, ptr - path);
|
|
|
|
drv[ptr - path] = '\0';
|
|
|
|
}
|
|
|
|
path = ptr;
|
|
|
|
}
|
|
|
|
else if (drv)
|
|
|
|
*drv = '\0';
|
|
|
|
|
|
|
|
/* find rightmost backslash or leftmost colon */
|
|
|
|
if (NULL == (ptr = strrchr(path, '\\')))
|
|
|
|
ptr = (strchr(path, ':'));
|
|
|
|
|
|
|
|
if (!ptr)
|
|
|
|
{
|
|
|
|
ptr = (char *)path; /* no path */
|
|
|
|
if (dir)
|
|
|
|
*dir = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++ptr; /* skip the delimiter */
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
ch = *ptr;
|
|
|
|
*ptr = '\0';
|
|
|
|
strcpy(dir, path);
|
|
|
|
*ptr = ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NULL == (p = strrchr(ptr, '.')))
|
|
|
|
{
|
|
|
|
if (fname)
|
|
|
|
strcpy(fname, ptr);
|
|
|
|
if (ext)
|
|
|
|
*ext = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*p = '\0';
|
|
|
|
if (fname)
|
|
|
|
strcpy(fname, ptr);
|
|
|
|
*p = '.';
|
|
|
|
if (ext)
|
|
|
|
strcpy(ext, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix pathological case - Win returns ':' as part of the
|
|
|
|
* directory when no drive letter is given.
|
|
|
|
*/
|
|
|
|
if (drv && drv[0] == ':')
|
|
|
|
{
|
|
|
|
*drv = '\0';
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
pathbuff[0] = ':';
|
|
|
|
pathbuff[1] = '\0';
|
|
|
|
strcat(pathbuff,dir);
|
|
|
|
strcpy(dir,pathbuff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|