MFH: add support for %I64(u|d) to sprintf() utilities

This commit is contained in:
Antony Dovgal 2007-04-12 22:01:20 +00:00
parent a133297c86
commit 73aa351741

View File

@ -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