blob: e62aa30d4765838f42d3153a865944324ed229dc (
plain) (
tree)
|
|
#include <syscall.h>
#include <string.h>
#include <printf.h>
#include <stdio.h>
fd_t stdio = 1;
int getc() {
char chr;
size_t sz = read(stdio, 0, 1, &chr);
ASSERT(sz == 1);
return chr;
}
void putc(int c) {
char chr = c;
write(stdio, 0, 1, &chr);
}
void puts(char* s) {
write(stdio, 0, strlen(s), s);
}
void getline(char* buf, size_t l) {
size_t i = 0;
while (true) {
int c = getc();
if (c == '\n') {
putc('\n');
buf[i] = 0;
break;
} else if (c == '\b') {
if (i > 0) {
i--;
putc('\b');
}
} else if (c >= ' ') {
buf[i] = c;
if (i < l-1) {
i++;
putc(c);
}
}
}
}
void printf(char* fmt, ...) {
va_list ap;
char buffer[256];
va_start(ap, fmt);
vsnprintf(buffer, 256, fmt, ap);
va_end(ap);
puts(buffer);
}
/* vim: set ts=4 sw=4 tw=0 noet :*/
|