quark/src/kernel/shell.c
2022-06-19 19:54:09 +02:00

14 líneas
252 B
C

#include "shell.h"
#include "lib/stdio.h"
#include "lib/string.h"
int shell_run(char *cmd){
if(!strcmp(cmd, "HELLO")){
printf("Hello!\n");
}
else{
printf("SHELL: Unknown command \"%s\"\n", cmd);
return 127;
}
}