printf now understands %l and %j.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-12-04 20:53:43 +01:00
parent 84b93044c8
commit 60d23eac19
1 changed files with 4 additions and 0 deletions

View File

@ -169,8 +169,12 @@ namespace Maxsi
scanning = false;
break;
case 'z':
case 'l':
type |= WORDWIDTH;
break;
case 'j':
type |= BIT64;
break;
case 'u':
type |= UNSIGNED;
scanning = false;