diff options
author | Marvin Borner | 2019-12-18 17:59:22 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-18 17:59:22 +0100 |
commit | 07530dd08e0b29573712b54543a7fc42672bb34b (patch) | |
tree | 3026395a952e66a489b3fcf24a89d64f2bb6198c /src/userspace/mlibc/stdio | |
parent | 025709e8643eb24e3360e575564b34ebd8062fd7 (diff) |
Added very basic command support
Diffstat (limited to 'src/userspace/mlibc/stdio')
-rw-r--r-- | src/userspace/mlibc/stdio/readline.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/userspace/mlibc/stdio/readline.c b/src/userspace/mlibc/stdio/readline.c index a7082e6..b948884 100644 --- a/src/userspace/mlibc/stdio/readline.c +++ b/src/userspace/mlibc/stdio/readline.c @@ -1,7 +1,16 @@ -// #include <syscall.h> +#include <syscall.h> +#include <mlibc/string.h> +#include <mlibc/stdio.h> char *readline() { - // return (char *) syscall_read(); - return "0"; + char *ret = ""; + char buf = 0; + while (buf != '\n') { + buf = getch(); + writec(buf); + strcpy(ret, buf); + } + strcpy(ret, buf); + return ret; }
\ No newline at end of file |