-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommandsDefines.h
54 lines (42 loc) · 990 Bytes
/
commandsDefines.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
#ifndef COMMANDS_DEFINES_H
#define COMMANDS_DEFINES_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "defines.h"
#include "utils.h"
#include "searchStructs.h"
#define NUM_COMMANDS 12
typedef struct {
int size;
long int pos;
long int next;
} EmptyBlock;
extern const char TABLES_INDEX[];
extern const char TABLES_DIR[];
extern const char CT[];
extern const char RT[];
extern const char AT[];
extern const char LT[];
extern const char IR[];
extern const char BR[];
extern const char AR[];
extern const char RR[];
extern const char CI[];
extern const char RI[];
extern const char GI[];
extern const char EB[];
extern const char U[];
extern const char N[];
extern const char A[];
extern const char H[];
extern const char *commands[];
extern int qtTables;
extern int CMD_LIMIT;
extern int PARAMETER_LIMIT;
extern FILE *tablesIndex;
extern ResultNode *resultTree;
#endif /* COMMANDS_DEFINES_H */