blob: b1e9a721bdc0a01086cf6f844577c80c0e449399 (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_d_define.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef FT_D_DEFINE_H
#define FT_D_DEFINE_H
#include "ft_d_enum.h"
/*
** ====== CLASSICS ======
*/
#define FT_DEFAULT_SHNAME "minishell"
#define FT_PS_ONE "minishell ~> "
#define FT_BUILTINS "echo|cd|pwd|export|unset|env|exit|type"
#define FT_BUILTINS_COUNT 8
#define FT_HISTFILE "minishell_history"
/*
** ====== OPTIONS ======
*/
#define FT_OPT_INTERACT "-i"
#define FT_OPT_COMMAND "-c"
/*
** ====== VARS ======
*/
#define FT_ZER_VAR "$0"
#define FT_RET_VAR "$?"
/*
** ====== FAIL MSG ======
*/
#define FT_FAIL_NO_OPTIONS "no options required"
#define FT_FAIL_TOO_MANY_ARGS "too many arguments"
#endif
|