aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio/readline.c
blob: b948884139971ebee9b7919023bbed9561feb32c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <syscall.h>
#include <mlibc/string.h>
#include <mlibc/stdio.h>

char *readline()
{
    char *ret = "";
    char buf = 0;
    while (buf != '\n') {
        buf = getch();
        writec(buf);
        strcpy(ret, buf);
    }
    strcpy(ret, buf);
    return ret;
}