Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
28884a8f
Commit
28884a8f
authored
Nov 15, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implemented _ltoa_s.
parent
4a1d9c3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
14 deletions
+32
-14
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+2
-2
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+2
-2
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+2
-2
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
string.c
dlls/msvcrt/string.c
+24
-6
No files found.
dlls/msvcr100/msvcr100.spec
View file @
28884a8f
...
...
@@ -862,9 +862,9 @@
@ cdecl _lseek(long long long) msvcrt._lseek
@ cdecl -ret64 _lseeki64(long int64 long) msvcrt._lseeki64
@ cdecl _ltoa(long ptr long) msvcrt._ltoa
@
stub
_ltoa_s
@
cdecl _ltoa_s(long ptr long long) msvcrt.
_ltoa_s
@ cdecl _ltow(long ptr long) msvcrt._ltow
@
stub
_ltow_s
@
cdecl _ltow_s(long ptr long long) msvcrt.
_ltow_s
@ cdecl _makepath(ptr str str str str) msvcrt._makepath
@ cdecl _makepath_s(ptr long str str str str) msvcrt._makepath_s
@ cdecl _malloc_crt(long) msvcrt.malloc
...
...
dlls/msvcr80/msvcr80.spec
View file @
28884a8f
...
...
@@ -708,9 +708,9 @@
@ cdecl _lseek(long long long) msvcrt._lseek
@ cdecl -ret64 _lseeki64(long int64 long) msvcrt._lseeki64
@ cdecl _ltoa(long ptr long) msvcrt._ltoa
@
stub
_ltoa_s
@
cdecl _ltoa_s(long ptr long long) msvcrt.
_ltoa_s
@ cdecl _ltow(long ptr long) msvcrt._ltow
@
stub
_ltow_s
@
cdecl _ltow_s(long ptr long long) msvcrt.
_ltow_s
@ cdecl _makepath(ptr str str str str) msvcrt._makepath
@ cdecl _makepath_s(ptr long str str str str) msvcrt._makepath_s
@ cdecl _malloc_crt(long) msvcrt.malloc
...
...
dlls/msvcr90/msvcr90.spec
View file @
28884a8f
...
...
@@ -696,9 +696,9 @@
@ cdecl _lseek(long long long) msvcrt._lseek
@ cdecl -ret64 _lseeki64(long int64 long) msvcrt._lseeki64
@ cdecl _ltoa(long ptr long) msvcrt._ltoa
@
stub
_ltoa_s
@
cdecl _ltoa_s(long ptr long long) msvcrt.
_ltoa_s
@ cdecl _ltow(long ptr long) msvcrt._ltow
@
stub
_ltow_s
@
cdecl _ltow_s(long ptr long long) msvcrt.
_ltow_s
@ cdecl _makepath(ptr str str str str) msvcrt._makepath
@ cdecl _makepath_s(ptr long str str str str) msvcrt._makepath_s
@ cdecl _malloc_crt(long) msvcrt.malloc
...
...
dlls/msvcrt/msvcrt.spec
View file @
28884a8f
...
...
@@ -639,9 +639,9 @@
@ cdecl _lseek(long long long) MSVCRT__lseek
@ cdecl -ret64 _lseeki64(long int64 long) MSVCRT__lseeki64
@ cdecl _ltoa(long ptr long) ntdll._ltoa
# stub
_ltoa_s
@ cdecl _ltoa_s(long ptr long long) ntdll.
_ltoa_s
@ cdecl _ltow(long ptr long) ntdll._ltow
# stub
_ltow_s
@ cdecl _ltow_s(long ptr long long) ntdll.
_ltow_s
@ cdecl _makepath(ptr str str str str)
@ cdecl _makepath_s(ptr long str str str str)
# stub _malloc_dbg
...
...
dlls/msvcrt/string.c
View file @
28884a8f
...
...
@@ -709,11 +709,12 @@ unsigned __int64 CDECL MSVCRT_strtoui64(const char *nptr, char **endptr, int bas
}
/*********************************************************************
* _
i
toa_s (MSVCRT.@)
* _
l
toa_s (MSVCRT.@)
*/
int
CDECL
_
itoa_s
(
int
value
,
char
*
str
,
MSVCRT_size_t
size
,
int
radix
)
int
CDECL
_
ltoa_s
(
MSVCRT_long
value
,
char
*
str
,
MSVCRT_size_t
size
,
int
radix
)
{
unsigned
int
val
,
digit
;
MSVCRT_ulong
val
;
unsigned
int
digit
;
int
is_negative
;
char
buffer
[
33
],
*
pos
;
size_t
len
;
...
...
@@ -786,11 +787,12 @@ int CDECL _itoa_s(int value, char *str, MSVCRT_size_t size, int radix)
}
/*********************************************************************
* _
i
tow_s (MSVCRT.@)
* _
l
tow_s (MSVCRT.@)
*/
int
CDECL
_
itow_s
(
int
value
,
MSVCRT_wchar_t
*
str
,
MSVCRT_size_t
size
,
int
radix
)
int
CDECL
_
ltow_s
(
MSVCRT_long
value
,
MSVCRT_wchar_t
*
str
,
MSVCRT_size_t
size
,
int
radix
)
{
unsigned
int
val
,
digit
;
MSVCRT_ulong
val
;
unsigned
int
digit
;
int
is_negative
;
MSVCRT_wchar_t
buffer
[
33
],
*
pos
;
size_t
len
;
...
...
@@ -863,6 +865,22 @@ int CDECL _itow_s(int value, MSVCRT_wchar_t *str, MSVCRT_size_t size, int radix)
}
/*********************************************************************
* _itoa_s (MSVCRT.@)
*/
int
CDECL
_itoa_s
(
int
value
,
char
*
str
,
MSVCRT_size_t
size
,
int
radix
)
{
return
_ltoa_s
(
value
,
str
,
size
,
radix
);
}
/*********************************************************************
* _itow_s (MSVCRT.@)
*/
int
CDECL
_itow_s
(
int
value
,
MSVCRT_wchar_t
*
str
,
MSVCRT_size_t
size
,
int
radix
)
{
return
_ltow_s
(
value
,
str
,
size
,
radix
);
}
/*********************************************************************
* _ui64toa_s (MSVCRT.@)
*/
int
CDECL
MSVCRT__ui64toa_s
(
unsigned
__int64
value
,
char
*
str
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment