History log of /seL4-refos-master/libs/libmuslc/src/stdlib/fcvt.c
Revision Date Author Comments
# 983acebc 07-Aug-2013 Rich Felker <dalias@aerifal.cx>

make fcvt decimal point location for zero make more sense

the (obsolete) standard allows either 0 or 1 for the decimal point
location in this case, but since the number of zero digits returned in
the output string (in this implementation) is one more than the number
of digits the caller requested, it makes sense for the decimal point
to be logically "after" the first digit. in a sense, this change goes
with the previous commit which fixed the value of the decimal point
location for non-zero inputs.


# f4ad36c4 05-Feb-2012 Rich Felker <dalias@aerifal.cx>

add deprecated (removed from posix) [efg]cvt() functions

these have not been heavily tested, but they should work as described
in the old standards. probably broken for non-finite values...