summaryrefslogtreecommitdiff
path: root/src/user/highway/main.c
blob: 45993150592dc095883ca1a876e07f792ebc941e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <knob/user.h>
#include <knob/task.h>
#include "cmds.h"
#include "line.h"

void main(const char *arg) {
  source(*arg ? arg : "user/default.rc");
  char cmd_buf[128];
  yield_task();
  struct history *cmd_hs = new_history(128);
  tell_user_sz("Portland Highway\nType \"help\" for help.\n");
  while (1) {
    tell_user_sz("\n> ");
    ask_user_line_sz_with_history(cmd_buf, 127, cmd_hs);
    run_line(cmd_buf);
  }
}