URL: <http://savannah.nongnu.org/bugs/?49020>
Summary: dtostre() flags documentation error Project: AVR C Runtime Library Submitted by: None Submitted on: Wed 07 Sep 2016 11:42:19 AM UTC Category: Documentation Severity: 3 - Normal Priority: 5 - Normal Item Group: Documentation Status: None Percent Complete: 0% Assigned to: None Originator Email: risto.laiti...@gmail.com Open/Closed: Open Discussion Lock: Any Release: Any Fixed Release: None _______________________________________________________ Details: The dtostre() flag macros begin with DTOSTR_, but the documentation says they begin with DTOSTRE_ include/stdlib.h: /** \ingroup avr_stdlib Bit value that can be passed in \c flags to dtostre(). */ #define DTOSTR_ALWAYS_SIGN 0x01 /* put '+' or ' ' for positives */ /** \ingroup avr_stdlib Bit value that can be passed in \c flags to dtostre(). */ #define DTOSTR_PLUS_SIGN 0x02 /* put '+' rather than ' ' */ /** \ingroup avr_stdlib Bit value that can be passed in \c flags to dtostre(). */ #define DTOSTR_UPPERCASE 0x04 /* put 'E' rather 'e' */ ... is zero, no decimal-point character appears. If \c flags has the DTOSTRE_UPPERCASE bit set, the letter \c 'E' (rather than \c 'e' ) will be ... If \c flags has the DTOSTRE_ALWAYS_SIGN bit set, a space character will be placed into the leading position for positive numbers. If \c flags has the DTOSTRE_PLUS_SIGN bit set, a plus sign will be used instead of a space character in this case. ... _______________________________________________________ Reply to this item at: <http://savannah.nongnu.org/bugs/?49020> _______________________________________________ Message sent via/by Savannah http://savannah.nongnu.org/ _______________________________________________ AVR-libc-dev mailing list AVR-libc-dev@nongnu.org https://lists.nongnu.org/mailman/listinfo/avr-libc-dev