Ignore:
Timestamp:
2009-03-24T14:43:25Z (15 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/console/kconsole.c

    r74c8da2c reec616b  
    5656#include <symtab.h>
    5757#include <errno.h>
     58#include <putchar.h>
    5859
    5960/** Simple kernel console.
     
    160161
    161162/** Print count times a character */
    162 static void rdln_print_c(char ch, int count)
    163 {
    164         int i;
     163static void rdln_print_c(wchar_t ch, count_t count)
     164{
     165        count_t i;
    165166        for (i = 0; i < count; i++)
    166167                putchar(ch);
Note: See TracChangeset for help on using the changeset viewer.