Changeset d1e70c7 in mainline


Ignore:
Timestamp:
2006-05-29T13:30:38Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
51c1b003
Parents:
a784a96
Message:

Fixed wrong doxygen formating.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/io/printf_core.c

    ra784a96 rd1e70c7  
    433433int printf_core(const char *fmt, struct printf_spec *ps, va_list ap)
    434434{
    435         int i = 0, j = 0; /**< i is index of currently processed char from fmt, j is index to the first not printed nonformating character */
     435        int i = 0, j = 0; /* i is index of currently processed char from fmt, j is index to the first not printed nonformating character */
    436436        int end;
    437         int counter; /**< counter of printed characters */
    438         int retval; /**< used to store return values from called functions */
     437        int counter; /* counter of printed characters */
     438        int retval; /* used to store return values from called functions */
    439439        char c;
    440         qualifier_t qualifier;  /**< type of argument */
    441         int base;       /**< base in which will be parameter (numbers only) printed */
    442         uint64_t number; /**< argument value */
    443         size_t  size; /**< byte size of integer parameter */
     440        qualifier_t qualifier;  /* type of argument */
     441        int base;       /* base in which will be parameter (numbers only) printed */
     442        uint64_t number; /* argument value */
     443        size_t  size; /* byte size of integer parameter */
    444444        int width, precision;
    445445        uint64_t flags;
Note: See TracChangeset for help on using the changeset viewer.