-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaders.h
94 lines (80 loc) · 2.05 KB
/
headers.h
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//Standard C libraries
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/dir.h>
#include <ctype.h>
#include <locale.h>
#include <sys/stat.h>
#include <dirent.h>
#include <pwd.h>
#include <time.h>
#include <grp.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <errno.h>
#include <signal.h>
#include <setjmp.h>
typedef struct {
int id;
char name[1024];
int status;
}process;
//Global variables
process processes[1024];
char user_name[100], system_name[100];
char home[1024], path[1024], displayed_path[1024];
int shell_running;
int redirect_output, redirect_input;
char * redirect_output_descriptor, redirect_input_descriptor, piping_write, piping_read;
int fd1[2], fd2[2];
int number_of_processes;
pid_t foreground_process_id;
sigjmp_buf env;
//Functions
//main.c
void initiate();
void main_loop();
//pwd.c
void get_pwd();
//readInput.c
char * get_input();
//processInput.c
void process_input(char * input);
void process_single_command(char * parameter);
char * refine_parameter(char * parameter);
void signal_handler(int signum);
//cd.c
void change_dir(char * command);
//echo.c
void echo(char * command);
//ls.c
void ls(char * command);
void flag_l(int choice, char * directory);
void without_flag_l(int choice, char * directory);
void open_directory(char * directory);
//processInput.c
void system_command(char * command);
void start_background_process(char * command[]);
void start_process(char * command[]);
//systemCommands.c
void start_process(char * command[]);
void start_background_process(char * command[]);
void system_command(char * command);
void check_background_processes();
void jobs();
void kjob_function(char * command);
void fg_function(char * command);
void bg_function(char * command);
void overkill_function(char * command);
//history.c
void store_in_history(char * command);
void display_history(char * command);
//pinfo.c
void find_relative_path(char cwd[],char rwd[]);
void pinfo(char input[]);
//setenv.c
void setenv_function(char * command);
void unsetenv_function(char * command);