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