Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cb7546ea
Commit
cb7546ea
authored
Sep 27, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Sep 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Use BOOL type where appropriate.
parent
5520dcab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
string.c
dlls/msvcrt/string.c
+12
-12
No files found.
dlls/msvcrt/string.c
View file @
cb7546ea
...
...
@@ -987,7 +987,7 @@ int CDECL _ltoa_s(MSVCRT_long value, char *str, MSVCRT_size_t size, int radix)
{
MSVCRT_ulong
val
;
unsigned
int
digit
;
int
is_negative
;
BOOL
is_negative
;
char
buffer
[
33
],
*
pos
;
size_t
len
;
...
...
@@ -1001,12 +1001,12 @@ int CDECL _ltoa_s(MSVCRT_long value, char *str, MSVCRT_size_t size, int radix)
if
(
value
<
0
&&
radix
==
10
)
{
is_negative
=
1
;
is_negative
=
TRUE
;
val
=
-
value
;
}
else
{
is_negative
=
0
;
is_negative
=
FALSE
;
val
=
value
;
}
...
...
@@ -1062,7 +1062,7 @@ int CDECL _ltow_s(MSVCRT_long value, MSVCRT_wchar_t *str, MSVCRT_size_t size, in
{
MSVCRT_ulong
val
;
unsigned
int
digit
;
int
is_negative
;
BOOL
is_negative
;
MSVCRT_wchar_t
buffer
[
33
],
*
pos
;
size_t
len
;
...
...
@@ -1076,12 +1076,12 @@ int CDECL _ltow_s(MSVCRT_long value, MSVCRT_wchar_t *str, MSVCRT_size_t size, in
if
(
value
<
0
&&
radix
==
10
)
{
is_negative
=
1
;
is_negative
=
TRUE
;
val
=
-
value
;
}
else
{
is_negative
=
0
;
is_negative
=
FALSE
;
val
=
value
;
}
...
...
@@ -1338,7 +1338,7 @@ int CDECL _i64toa_s(__int64 value, char *str, MSVCRT_size_t size, int radix)
{
unsigned
__int64
val
;
unsigned
int
digit
;
int
is_negative
;
BOOL
is_negative
;
char
buffer
[
65
],
*
pos
;
size_t
len
;
...
...
@@ -1352,12 +1352,12 @@ int CDECL _i64toa_s(__int64 value, char *str, MSVCRT_size_t size, int radix)
if
(
value
<
0
&&
radix
==
10
)
{
is_negative
=
1
;
is_negative
=
TRUE
;
val
=
-
value
;
}
else
{
is_negative
=
0
;
is_negative
=
FALSE
;
val
=
value
;
}
...
...
@@ -1413,7 +1413,7 @@ int CDECL _i64tow_s(__int64 value, MSVCRT_wchar_t *str, MSVCRT_size_t size, int
{
unsigned
__int64
val
;
unsigned
int
digit
;
int
is_negative
;
BOOL
is_negative
;
MSVCRT_wchar_t
buffer
[
65
],
*
pos
;
size_t
len
;
...
...
@@ -1427,12 +1427,12 @@ int CDECL _i64tow_s(__int64 value, MSVCRT_wchar_t *str, MSVCRT_size_t size, int
if
(
value
<
0
&&
radix
==
10
)
{
is_negative
=
1
;
is_negative
=
TRUE
;
val
=
-
value
;
}
else
{
is_negative
=
0
;
is_negative
=
FALSE
;
val
=
value
;
}
...
...
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