-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtyos.c
34 lines (31 loc) · 1.08 KB
/
tyos.c
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
26
27
28
29
30
31
32
33
34
#include <tyos.h>
#include <mbr.h>
#include <runtime.h>
#include <utils.h>
int shell(){
char cmd[BUFFER_MAX_LENGTH];
/* Clear screen */
clear();
/* Main loop */
print(NL INIT_MSG NL);
while(1){
print(PROMPT); /* Show prompt. */
read(cmd); /* Read user command. */
/* Process user command. */
if(compare(cmd, HELP_CMD)) /* Command help. */
help();
else if(compare(cmd, DATE_CMD)) /* Command date*/
date();
else if(compare(cmd, TIME_CMD))
time();
else if(compare(cmd, QUIT_CMD)) /* Commandquit */
quit();
else if(compare(cmd, CLEAR_CMD))
clear();
else{
print(cmd);
printnl(NOT_FOUND);
}
}
return 0;
}