Changeset b45c443 in mainline for generic/src/printf/printf_core.c


Ignore:
Timestamp:
2006-06-13T14:26:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3222efd
Parents:
279952c
Message:

Kernel doxygen comments updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/printf/printf_core.c

    r279952c rb45c443  
    2828 */
    2929
     30 /** @addtogroup generic       
     31 * @{
     32 */
    3033/**
    31  * @file        print.c
     34 * @file
    3235 * @brief       Printing functions.
    3336 */
     
    101104 * @param count
    102105 * @param ps output method and its data
    103  * @return number or printed characters
     106 * @return number of printed characters
    104107 */
    105108static int printf_putnchars(const char * buf, size_t count, struct printf_spec *ps)
     
    111114 * @param str string to print
    112115 * @param ps write function specification and support data
    113  * @return number or printed characters
     116 * @return number of printed characters
    114117 */
    115118static int printf_putstr(const char * str, struct printf_spec *ps)
     
    129132 * @param c one character
    130133 * @param ps output method
    131  * @return number or printed characters
     134 * @return number of printed characters
    132135 */
    133136static int printf_putchar(int c, struct printf_spec *ps)
     
    150153        if (!(flags & __PRINTF_FLAG_LEFTALIGNED)) {
    151154                while (--width > 0) {   /* one space is consumed by character itself hence predecrement */
    152                         /* FIXME: painful slow */
    153155                        if (printf_putchar(' ', ps) > 0)       
    154156                                ++counter;
     
    717719}
    718720
     721
     722 /** @}
     723 */
     724
Note: See TracChangeset for help on using the changeset viewer.