Skip to content
Snippets Groups Projects
Commit dfeae746 authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

lose > before output, prompt when ready for input

parent 0a50f170
No related branches found
No related tags found
No related merge requests found
...@@ -144,17 +144,25 @@ static int readline(shell_t *shell, char* buf, size_t size) { ...@@ -144,17 +144,25 @@ static int readline(shell_t *shell, char* buf, size_t size) {
return 1; return 1;
} }
static inline void print_prompt(shell_t *shell)
{
shell->put_char('>');
shell->put_char(' ');
return;
}
void shell_run(shell_t *shell) { void shell_run(shell_t *shell) {
char line_buf[255]; char line_buf[255];
print_prompt(shell);
while(1) { while(1) {
int res = readline(shell, line_buf, sizeof(line_buf)); int res = readline(shell, line_buf, sizeof(line_buf));
shell->put_char('>');
if (! res ) { if (! res ) {
char* line_copy = strdup(line_buf); char* line_copy = strdup(line_buf);
handle_input_line(shell, line_copy); handle_input_line(shell, line_copy);
free(line_copy); free(line_copy);
} }
print_prompt(shell);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment