mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
printf now understands %l and %j.
This commit is contained in:
parent
84b93044c8
commit
60d23eac19
1 changed files with 4 additions and 0 deletions
|
@ -169,8 +169,12 @@ namespace Maxsi
|
||||||
scanning = false;
|
scanning = false;
|
||||||
break;
|
break;
|
||||||
case 'z':
|
case 'z':
|
||||||
|
case 'l':
|
||||||
type |= WORDWIDTH;
|
type |= WORDWIDTH;
|
||||||
break;
|
break;
|
||||||
|
case 'j':
|
||||||
|
type |= BIT64;
|
||||||
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
type |= UNSIGNED;
|
type |= UNSIGNED;
|
||||||
scanning = false;
|
scanning = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue