-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheaders.h
More file actions
60 lines (54 loc) · 988 Bytes
/
headers.h
File metadata and controls
60 lines (54 loc) · 988 Bytes
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
#ifndef _HEADERS_H_
#define _HEADERS_H_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <termios.h>
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <ctype.h>
#include <time.h>
#include <pwd.h>
#include <grp.h>
#include "cd.h"
#include "ls.h"
#include "fbs.h"
#include "pwd.h"
#include "echo.h"
#include "jobs.h"
#include "input.h"
#include "pinfo.h"
#include "prompt.h"
#include "signal.h"
#include "process.h"
#include "history.h"
#include "bProcess.h"
#include "discover.h"
#define GREEN "\033[01;32m"
#define BLUE "\033[01;34m"
#define WHITE "\033[0;37m"
#define RED "\033[01;31m"
#define PURPLE "\033[01;35m"
#define YELLOW "\033[01;33m"
#define N 512
typedef struct BG
{
int id;
int num;
int done;
char pname[N];
} BG;
typedef struct list
{
int id;
int num;
int status;
char pname[N];
} List;
#endif