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; }