am c5c84c86
: Merge "vfscanf: Add support for L type modifier for long long"
* commit 'c5c84c8643250c71bde87541f2b28fc21a9c5cc7': vfscanf: Add support for L type modifier for long long
This commit is contained in:
commit
3f7a3228cd
1 changed files with 7 additions and 1 deletions
|
@ -162,7 +162,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…
Reference in a new issue