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

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