am 3f7a3228: am c5c84c86: Merge "vfscanf: Add support for L type modifier for long long"
* commit '3f7a3228cdf1a48e379fb297be9114ecd71bff11': vfscanf: Add support for L type modifier for long long
This commit is contained in:
commit
bde9e2802d
@ -162,7 +162,13 @@ literal:
|
|||||||
flags |= MAXINT;
|
flags |= MAXINT;
|
||||||
goto again;
|
goto again;
|
||||||
case 'L':
|
case 'L':
|
||||||
flags |= LONGDBL;
|
flags |=
|
||||||
|
(*fmt == 'd') ? LLONG :
|
||||||
|
(*fmt == 'i') ? LLONG :
|
||||||
|
(*fmt == 'o') ? LLONG :
|
||||||
|
(*fmt == 'u') ? LLONG :
|
||||||
|
(*fmt == 'x') ? LLONG :
|
||||||
|
LONGDBL;
|
||||||
goto again;
|
goto again;
|
||||||
case 'h':
|
case 'h':
|
||||||
if (*fmt == 'h') {
|
if (*fmt == 'h') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user