Changeset b45c443 in mainline for generic/src/printf


Ignore:
Timestamp:
2006-06-13T14:26:44Z (20 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.

Location:
generic/src/printf
Files:
7 edited

Legend:

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

    r279952c rb45c443  
    2727 */
    2828
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <print.h>
    3036
     
    4349}
    4450
     51
     52 /** @}
     53 */
     54
  • 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
  • generic/src/printf/snprintf.c

    r279952c rb45c443  
    2727 */
    2828
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <print.h>
    3036#include <printf/printf_core.h>
     
    4248        return ret;
    4349}
     50
     51 /** @}
     52 */
     53
  • generic/src/printf/sprintf.c

    r279952c rb45c443  
    2727 */
    2828
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <print.h>
    3036
     
    4147        return ret;
    4248}
     49
     50 /** @}
     51 */
     52
  • generic/src/printf/vprintf.c

    r279952c rb45c443  
    2727 */
    2828
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <print.h>
    3036#include <printf/printf_core.h>
     
    4955
    5056
     57
     58 /** @}
     59 */
     60
  • generic/src/printf/vsnprintf.c

    r279952c rb45c443  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
    2733 */
    2834
     
    94100        return printf_core(fmt, &ps, ap);
    95101}
     102
     103 /** @}
     104 */
     105
  • generic/src/printf/vsprintf.c

    r279952c rb45c443  
    2727 */
    2828
     29 /** @addtogroup generic       
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <print.h>
    3036
     
    3440}
    3541
     42
     43 /** @}
     44 */
     45
Note: See TracChangeset for help on using the changeset viewer.