blob: c9ceee24d182387c74200b9f152c32424ca77443 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <libterm/terminal.h>
#include <libterm/readline.h>
#include <knob/task.h>
#include "cmds.h"
#include "line.h"
void main(const char *arg) {
//syslogf(" this task: 0x%2h", this_task);
//syslogf(" stdio task: 0x%2h", stdio_task);
//syslogf("calling task: 0x%2h", calling_task);
source(*arg ? arg : "user/default.rc");
ensure_color();
term_add_sz("Portland Highway\nType \"help\" for help.\n");
term_paint();
char cmd_buf[128];
while (1) {
read_line(cmd_buf, 127, "> ");
run_line(cmd_buf);
}
}
|