-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.h
23 lines (21 loc) · 1.22 KB
/
shell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Sogang University *
* Department of Computer Science and Engineering *
* *
* Subject name: System Programming *
* Project title: [3] SIC/XE Machine - Linking Loader *
* *
* Author: Inho Kim *
* Student ID: 20161577 *
* *
* File name: shell.h *
* File description: Header file for shell related tasks. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void helpCMD(); // COMMAND: help
void dirCMD(); // COMMAND: dir
void quitCMD(); // COMMAND: quit
void histCMD(); // COMMAND: history
void typeCMD(INPUT_CMD); // COMMAND: type
void histAdd(char*); // function to add input command into history