Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
f882d53f
Commit
f882d53f
authored
Nov 13, 2015
by
Paul Sokolovsky
Browse files
unix/main: Use builtin unichar_isdigit() in preference if libc's.
Less dependencies.
parent
772f0b41
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix/main.c
View file @
f882d53f
...
...
@@ -502,7 +502,7 @@ int main(int argc, char **argv) {
}
else
if
(
strcmp
(
argv
[
a
],
"-v"
)
==
0
)
{
mp_verbose_flag
++
;
}
else
if
(
strncmp
(
argv
[
a
],
"-O"
,
2
)
==
0
)
{
if
(
isdigit
(
argv
[
a
][
2
]))
{
if
(
unichar_
isdigit
(
argv
[
a
][
2
]))
{
MP_STATE_VM
(
mp_optimise_value
)
=
argv
[
a
][
2
]
&
0xf
;
}
else
{
MP_STATE_VM
(
mp_optimise_value
)
=
0
;
...
...
Write
Preview
Supports
Markdown
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