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
5ba68bb9
Commit
5ba68bb9
authored
Sep 02, 2014
by
Vincent Povirk
Committed by
Alexandre Julliard
Oct 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement _strtoul_l.
parent
eb6790c1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
8 deletions
+16
-8
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
string.c
dlls/msvcrt/string.c
+11
-3
No files found.
dlls/msvcr100/msvcr100.spec
View file @
5ba68bb9
...
...
@@ -1362,7 +1362,7 @@
@ stub _strtol_l
@ cdecl -ret64 _strtoui64(str ptr long) MSVCRT_strtoui64
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
@
stub
_strtoul_l
@
cdecl _strtoul_l(str ptr long ptr) MSVCRT
_strtoul_l
@ cdecl _strupr(str) MSVCRT__strupr
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
...
...
dlls/msvcr110/msvcr110.spec
View file @
5ba68bb9
...
...
@@ -1720,7 +1720,7 @@
@ stub _strtol_l
@ cdecl -ret64 _strtoui64(str ptr long) MSVCRT_strtoui64
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
@
stub
_strtoul_l
@
cdecl _strtoul_l(str ptr long ptr) MSVCRT
_strtoul_l
@ cdecl _strupr(str) MSVCRT__strupr
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
...
...
dlls/msvcr80/msvcr80.spec
View file @
5ba68bb9
...
...
@@ -1042,7 +1042,7 @@
@ stub _strtol_l
@ cdecl -ret64 _strtoui64(str ptr long) MSVCRT_strtoui64
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
@
stub
_strtoul_l
@
cdecl _strtoul_l(str ptr long ptr) MSVCRT
_strtoul_l
@ cdecl _strupr(str) MSVCRT__strupr
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
...
...
dlls/msvcr90/msvcr90.spec
View file @
5ba68bb9
...
...
@@ -1017,7 +1017,7 @@
@ stub _strtol_l
@ cdecl -ret64 _strtoui64(str ptr long) MSVCRT_strtoui64
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
@
stub
_strtoul_l
@
cdecl _strtoul_l(str ptr long ptr) MSVCRT
_strtoul_l
@ cdecl _strupr(str) MSVCRT__strupr
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
...
...
dlls/msvcrt/msvcrt.spec
View file @
5ba68bb9
...
...
@@ -983,7 +983,7 @@
# stub _strtol_l(str ptr long ptr)
@ cdecl -ret64 _strtoui64(str ptr long) MSVCRT_strtoui64
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
# stub _strtoul_l(str ptr long ptr)
@ cdecl _strtoul_l(str ptr long ptr) MSVCRT_strtoul_l
@ cdecl _strupr(str) MSVCRT__strupr
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
...
...
dlls/msvcrt/string.c
View file @
5ba68bb9
...
...
@@ -982,11 +982,11 @@ MSVCRT_long CDECL MSVCRT_strtol(const char* nptr, char** end, int base)
}
/******************************************************************
*
strtou
l (MSVCRT.@)
*
_strtoul_
l (MSVCRT.@)
*/
MSVCRT_ulong
CDECL
MSVCRT_strtoul
(
const
char
*
nptr
,
char
**
end
,
int
bas
e
)
MSVCRT_ulong
CDECL
MSVCRT_strtoul
_l
(
const
char
*
nptr
,
char
**
end
,
int
base
,
MSVCRT__locale_t
local
e
)
{
__int64
ret
=
MSVCRT_strtoi64_l
(
nptr
,
end
,
base
,
NULL
);
__int64
ret
=
MSVCRT_strtoi64_l
(
nptr
,
end
,
base
,
locale
);
if
(
ret
>
MSVCRT_ULONG_MAX
)
{
ret
=
MSVCRT_ULONG_MAX
;
...
...
@@ -999,6 +999,14 @@ MSVCRT_ulong CDECL MSVCRT_strtoul(const char* nptr, char** end, int base)
return
ret
;
}
/******************************************************************
* strtoul (MSVCRT.@)
*/
MSVCRT_ulong
CDECL
MSVCRT_strtoul
(
const
char
*
nptr
,
char
**
end
,
int
base
)
{
return
MSVCRT_strtoul_l
(
nptr
,
end
,
base
,
NULL
);
}
/*********************************************************************
* _strtoui64_l (MSVCRT.@)
*
...
...
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