Skip to content

Commit 917759c

Browse files
Update myshell.c
1 parent d59daa8 commit 917759c

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

myshell.c

-21
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
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-
221
#include <stdio.h>
232
#include <string.h>
243
#include <stdlib.h> // exit()

0 commit comments

Comments
 (0)