mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
MFH: add support for %I64(u|d) to sprintf() utilities
This commit is contained in:
parent
a133297c86
commit
73aa351741
@ -708,6 +708,16 @@ static int format_converter(register buffy * odp, const char *fmt, va_list ap) /
|
||||
fmt++;
|
||||
modifier = LM_LONG_DOUBLE;
|
||||
break;
|
||||
case 'I':
|
||||
fmt++;
|
||||
#if SIZEOF_LONG_LONG
|
||||
if (*fmt == '6' && *(fmt+1) == '4') {
|
||||
fmt += 2;
|
||||
modifier = LM_LONG_LONG;
|
||||
} else
|
||||
#endif
|
||||
modifier = LM_LONG;
|
||||
break;
|
||||
case 'l':
|
||||
fmt++;
|
||||
#if SIZEOF_LONG_LONG
|
||||
|
Loading…
Reference in New Issue
Block a user