File tree 1 file changed +0
-21
lines changed
1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change 1
- /****************************************************************************************************************************************************************
2
- This is a template for assignment on writing a custom Shell.
3
-
4
- Students may change the return types and arguments of the functions given in this template,
5
- but do not change the names of these functions.
6
-
7
- Though use of any extra functions is not recommended, students may use new functions if they need to,
8
- but that should not make code unnecessorily complex to read.
9
-
10
- Students should keep names of declared variable (and any new functions) self explanatory,
11
- and add proper comments for every logical step.
12
-
13
- Students need to be careful while forking a new process (no unnecessory process creations)
14
- or while inserting the single handler code (should be added at the correct places).
15
-
16
- Finally, keep your filename as myshell.c, do not change this name (not even myshell.cpp,
17
- as you not need to use any features for this assignment that are supported by C++ but not by C).
18
- ***************************************************************************************************************************************************************/
19
-
20
- //BT21CSE111 : PHAPALE SHUBHAM SARJERAO (27762)
21
-
22
1
#include <stdio.h>
23
2
#include <string.h>
24
3
#include <stdlib.h> // exit()
You can’t perform that action at this time.
0 commit comments