When using REDUCED_SUPPORT (_small_write) in _formatted_write, %X, %x and %o previously zero-padded the output. Now, leading zeros are removed.
When using REDUCED_SUPPORT in _formatted_write, %x previously printed capitals, e.g., printf("%x", 0x1f2a); outputs "0x1F2A". While correcting this, support was included for %X to allow the same output as before. h and l modifiers are also supported in REDUCED_SUPPORT but can easily be removed when not necessary.
Include file: math.h Declaration: double exp10(double arg) Parameters: arg A double value Return value: a double with the value 10^arg Description: Computes the value 10^arg
vprintf : Works as 'printf' with the variable argument list of 'printf(...)' replaced with a 'va_list' argument. vsprintf: Works as 'sprintf' with the variable argument list of 'sprintf(...)' replaced with a 'va_list' argument.
$Revision: 1.4 $
Copyright 2000 IAR Systems. All rights reserved.