Seyshell
Loading...
Searching...
No Matches
const.h
Go to the documentation of this file.
1
2#define BUFSIZE 1024
3#define MAX_BLOCS 30
4#define MAX_BYTES_PER_BLOC 512
5#define MAX_INODE 30
6#define MAX_INODE_NAME 28 // 27 caractères + '\0' + numero de l'inode ref
7
8#define TYPE_NULL 0
9#define TYPE_FILE 1
10#define TYPE_DIRECTORY 3
11#define TYPE_SYMBOLIC_LINK 4
12
13#define COLOR_RED "\e[0;31m"
14#define COLOR_BLUE "\x1b[34m"
15#define COLOR_GREEN "\x1b[32m"
16#define ESCAPE_COLOR "\x1b[0m"