-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.cpp
More file actions
23 lines (20 loc) · 735 Bytes
/
help.cpp
File metadata and controls
23 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include"commands.h"
void help(){
printf("\nCommands : \n\
- echo Printing HashQueue, FreeList and ProcessList\n\
- process Creating multiple processes\n\
- clear Clear the screen\n\
- help Open the help section\n\
");
printf("\necho :\n\
It take only one parameter.\n\
- hashqueue for printing HashQueue\n\
- freelist for printing FreeList\n\
- processlist for printing ProcessList\n\
");
printf("\nprocess - Create multiple processes :\n\
It takes any number of parameter\n\
- filename - that consist the requests for blocks.\n\
e.g process input1.txt input2.txt \
");
}