mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-06-06 15:54:47 +00:00
optimize change from #131
This commit is contained in:
parent
6104f8b905
commit
7ecfb59757
@ -13,13 +13,8 @@ I64 Str2I64(U8 *st, I64 radix=10, U8 **_end_ptr=NULL)
|
||||
}
|
||||
while (Bt(char_bmp_white_space, *st))
|
||||
st++;
|
||||
if (*st == '+')
|
||||
st++;
|
||||
else if (*st == '-')
|
||||
{
|
||||
neg = TRUE;
|
||||
st++;
|
||||
}
|
||||
if (*st == '+' || *st == '-')
|
||||
neg = *st++ == '-';
|
||||
while (TRUE)
|
||||
switch (*st)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user