-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.h
More file actions
38 lines (31 loc) · 734 Bytes
/
Copy pathinclude.h
File metadata and controls
38 lines (31 loc) · 734 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
/*
* semsem is a basic shell for Unix/Linux systems
* Written by: Islam Faisal (decltypeme)
* The American University in Cairo
* For License, please see LICENSE
*/
/*
* File: include.h
* Author: Islam Faisal
* A list of files to be included
*/
#ifndef INCLUDE_H
#define INCLUDE_H
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <regex.h>
#include <stdbool.h>
#include <ctype.h>
#include <string.h>
#include <sys/types.h>
#include <sys/types.h>
#include <signal.h>
#include <sys/wait.h>
#include "config.h"
#define _GNU_SOURCE
//Regex before escaping (?:(?:")(\\"|[^"]*)(?:"))|([^\s]+)
//(?:(?:\")(\\\\\"|[^\"]*)(?:\"))
#define REGEX_ARGS_RULE "([\\S]+)+"
#endif /* INCLUDE_H */