Skip to content

Commit edb04d3

Browse files
committed
feat(idn): just fixed some littles issues nothing relevanT
1 parent 7865bb0 commit edb04d3

File tree

12 files changed

+84
-1
lines changed

12 files changed

+84
-1
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"files.associations": {
33
"unistd.h": "c",
44
"minishell.h": "c",
5-
"readline.h": "c"
5+
"readline.h": "c",
6+
"typeinfo": "cpp"
67
}
78
}

incs/ast.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef AST_H
2+
# define AST_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/builtins.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef BUILTINS_H
2+
# define BUILTINS_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/env.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef ENV_H
2+
# define ENV_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/executor.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef EXECUTOR_H
2+
# define EXECUTOR_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/expander.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef EXECUTOR_H
2+
# define EXECUTOR_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/globbing.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef GLOBBING_H
2+
# define GLOBBING_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/lexer.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef LEXER_H
2+
# define LEXER_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/parser.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef PARSER_H
2+
# define PARSER_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

incs/signals.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ifndef SIGNALS_H
2+
# define SIGNALS_H
3+
4+
#include "libft.h"
5+
6+
7+
#endif

0 commit comments

Comments
 (0)