diff options
author | Marvin Borner | 2020-05-28 23:02:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-28 23:02:51 +0200 |
commit | f600c79559892b73b019102478af501cf71fe6a4 (patch) | |
tree | db5bca15169c9990e3c6ab52568d526d1e25bac5 /src/kernel/lib/stdio/vprintf.c | |
parent | 731ea56513bd199597a905eb1937e67cbd762b32 (diff) |
Added vsprintf support for serial connections
Diffstat (limited to 'src/kernel/lib/stdio/vprintf.c')
-rw-r--r-- | src/kernel/lib/stdio/vprintf.c | 51 |
1 files changed, 5 insertions, 46 deletions
diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c index 4c0c432..2351d39 100644 --- a/src/kernel/lib/stdio/vprintf.c +++ b/src/kernel/lib/stdio/vprintf.c @@ -1,54 +1,13 @@ #include <lib/stdio.h> #include <lib/stdlib.h> -#include <lib/string.h> -#include <memory/alloc.h> -#include <stdarg.h> #include <stdint.h> -void _puts(const char *data) -{ - for (u32 i = 0; i < strlen(data); i++) - putch(data[i]); -} - +// TODO: Use global formatting function void vprintf(const char *fmt, va_list args) { - u8 readyToFormat = 0; - - char buff = 0; - - for (; *fmt; fmt++) { - if (readyToFormat) { - if (*fmt == '%') { - putch('%'); - readyToFormat = 0; - continue; - } + char buf[1024]; + vsprintf(buf, fmt, args); - buff = *fmt; - if (buff == 's') { - const char *str = va_arg(args, const char *); - _puts(str); - readyToFormat = 0; - } else if (buff == 'x') { - char *p = htoa((u32)va_arg(args, int)); - _puts(p); - free(p); - readyToFormat = 0; - } else if (buff == 'd') { - char *p = itoa(va_arg(args, int)); - _puts(p); - free(p); - readyToFormat = 0; - } else if (buff == 'c') { - putch((char)va_arg(args, int)); - readyToFormat = 0; - } - } else { - if (*fmt == '%') - readyToFormat = 1; - else - putch(*fmt); - } - } + for (u32 i = 0; i < strlen(buf); i++) + putch(buf[i]); }
\ No newline at end of file |