Changeset eec616b in mainline for kernel/generic/src/printf/printf.c


Ignore:
Timestamp:
2009-03-24T14:43:25Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8f29e336
Parents:
74c8da2c
Message:

Unicode aware printf and family functions
(this breaks some things, but will be fixed soon)

File:
1 edited

Legend:

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

    r74c8da2c reec616b  
    2727 */
    2828
    29 /** @addtogroup generic 
     29/** @addtogroup generic
    3030 * @{
    3131 */
     
    3434
    3535#include <print.h>
    36 int printf(const char *fmt, ...);
    3736
    3837int printf(const char *fmt, ...)
     
    4039        int ret;
    4140        va_list args;
    42 
     41       
    4342        va_start(args, fmt);
    44 
     43       
    4544        ret = vprintf(fmt, args);
    4645       
    4746        va_end(args);
    48 
     47       
    4948        return ret;
    5049}
Note: See TracChangeset for help on using the changeset viewer.