-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.h
More file actions
61 lines (48 loc) · 1.02 KB
/
Copy pathheaders.h
File metadata and controls
61 lines (48 loc) · 1.02 KB
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
#ifndef HEADERS_H_
#define HEADERS_H_
#include <stdio.h>
#include<unistd.h>
#include<pwd.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<termios.h>
# include<sys/wait.h>
#define max_len 1000
#include <dirent.h>
#include <sys/stat.h>
#include <grp.h>
#include <time.h>
#include <sys/types.h>
#include <signal.h>
#include <fcntl.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <regex.h>
#include<ctype.h>
#include"warp.h"
#include"peek.h"
#include "prompt.h"
#include "proclore.h"
#include "seek.h"
#include"pastevents.h"
#include"neonate.h"
#include"fg_bg.h"
#include"activities.h"
#include"ping.h"
#include"iman.h"
#include"pipe.h"
#include"redirection.h"
#include"main_function.h"
extern int check_fore;
extern struct timespec start_time, end_time;
extern char* long_cmm;
extern int n;
extern child_pr* prcs_list;
extern pid_t fore_child;
extern char* fore_child_cmm;
extern char prev_directory[max_len];
extern char** history_array;
extern char home[max_len];
extern struct termios orig_termios;
#endif