aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio
diff options
context:
space:
mode:
authorMarvin Borner2020-04-28 20:59:57 +0200
committerMarvin Borner2020-04-28 20:59:57 +0200
commit5f8b5ce7efb7738eaebad43f9648975788ae19ff (patch)
treeab8fc4d4baa4adb99dc90461df689650acf34cef /src/kernel/lib/stdio
parentbfe16de4be67565f1a1e7b1331fcbe3aedf9c54e (diff)
Fixed userspace entering...
Many other fixes too, but I won't mention them because I don't want to :)
Diffstat (limited to 'src/kernel/lib/stdio')
-rw-r--r--src/kernel/lib/stdio/getch.c4
-rw-r--r--src/kernel/lib/stdio/putch.c (renamed from src/kernel/lib/stdio/writec.c)2
-rw-r--r--src/kernel/lib/stdio/readline.c10
-rw-r--r--src/kernel/lib/stdio/vprintf.c16
4 files changed, 11 insertions, 21 deletions
diff --git a/src/kernel/lib/stdio/getch.c b/src/kernel/lib/stdio/getch.c
index e806013..4f6ed39 100644
--- a/src/kernel/lib/stdio/getch.c
+++ b/src/kernel/lib/stdio/getch.c
@@ -1,11 +1,11 @@
#include <kernel/input/input.h>
#include <kernel/timer/timer.h>
+#include <kernel/system.h>
char getch()
{
keyboard_char_buffer = 0;
while (keyboard_char_buffer == 0) {
- timer_wait(1); // IDK why!
- }
+ };
return keyboard_char_buffer;
} \ No newline at end of file
diff --git a/src/kernel/lib/stdio/writec.c b/src/kernel/lib/stdio/putch.c
index 83b05de..f7e0248 100644
--- a/src/kernel/lib/stdio/writec.c
+++ b/src/kernel/lib/stdio/putch.c
@@ -1,6 +1,6 @@
#include <kernel/graphics/vesa.h>
-void writec(char c)
+void putch(char c)
{
vesa_draw_char(c);
} \ No newline at end of file
diff --git a/src/kernel/lib/stdio/readline.c b/src/kernel/lib/stdio/readline.c
deleted file mode 100644
index 1bda252..0000000
--- a/src/kernel/lib/stdio/readline.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <kernel/input/input.h>
-#include <kernel/lib/string.h>
-
-char *readline()
-{
- keyboard_clear_buffer();
- while (keyboard_buffer[strlen(keyboard_buffer) - 1] != '\n') {
- }
- return keyboard_buffer;
-} \ No newline at end of file
diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c
index b9188c6..2431a48 100644
--- a/src/kernel/lib/stdio/vprintf.c
+++ b/src/kernel/lib/stdio/vprintf.c
@@ -5,10 +5,10 @@
#include <kernel/lib/stdlib.h>
#include <kernel/memory/alloc.h>
-void _writes(const char *data)
+void _puts(const char *data)
{
for (size_t i = 0; i < strlen(data); i++)
- writec(data[i]);
+ putch(data[i]);
}
void vprintf(const char *fmt, va_list args)
@@ -20,7 +20,7 @@ void vprintf(const char *fmt, va_list args)
for (; *fmt; fmt++) {
if (readyToFormat) {
if (*fmt == '%') {
- writec('%');
+ putch('%');
readyToFormat = 0;
continue;
}
@@ -28,27 +28,27 @@ void vprintf(const char *fmt, va_list args)
buff = *fmt;
if (buff == 's') {
const char *str = va_arg(args, const char *);
- _writes(str);
+ _puts(str);
readyToFormat = 0;
} else if (buff == 'x') {
char *p = htoa((uint32_t)va_arg(args, int));
- _writes(p);
+ _puts(p);
kfree(p);
readyToFormat = 0;
} else if (buff == 'd') {
char *p = itoa(va_arg(args, int));
- _writes(p);
+ _puts(p);
kfree(p);
readyToFormat = 0;
} else if (buff == 'c') {
- writec((char)va_arg(args, int));
+ putch((char)va_arg(args, int));
readyToFormat = 0;
}
} else {
if (*fmt == '%')
readyToFormat = 1;
else
- writec(*fmt);
+ putch(*fmt);
}
}
} \ No newline at end of file