mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- The printf() family now produces no output at all for %e, %f and %g if the floating point support code is disabled. Previously, a minimum field width specification could take effect, printing a series of 0 or blank space characters where no output should have been produced. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14756 87f5fb63-7c3d-0410-a384-fd976d0f7a62
11 lines
479 B
Plaintext
11 lines
479 B
Plaintext
c.lib 1.180 (23.10.2004)
|
|
|
|
- The printf() family now produces no output at all for floating point
|
|
numbers (%e, %f and %g) if the floating point support code is disabled.
|
|
In previous versions of the library some output (series of 0 or blank
|
|
space characters) could still be produced.
|
|
|
|
- The scanf() family no longer ignores a conversion request of
|
|
type '%x' (hexadecimal) and treats the number to be processed
|
|
as in octal notation if that number begins with the digit 0.
|