builtins.h
This commit is contained in:
10
includes/builtins.h
Normal file
10
includes/builtins.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef BUILTINS_H
|
||||
# define BUILTINS_H
|
||||
|
||||
# include "../lib/libft/libft.h"
|
||||
# include <stdio.h>
|
||||
# include <unistd.h>
|
||||
|
||||
// void echo(char *msg, int flag);
|
||||
|
||||
#endif
|
||||
18
includes/minishell.h
Normal file
18
includes/minishell.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef MINISHELL_H
|
||||
# define MINISHELL_H
|
||||
|
||||
# include <stdio.h>
|
||||
# include <readline/readline.h>
|
||||
# include <unistd.h>
|
||||
# include <stdlib.h>
|
||||
|
||||
# include "lib/libft/libft.h"
|
||||
# include "builtins.h"
|
||||
|
||||
# define POW1 "\033[1;38;2;21;22;26;48;2;92;106;178m"
|
||||
# define POW2 "\033[1;38;2;92;106;178;48;2;54;54;54m"
|
||||
# define POW3 "\033[1;38;2;54;54;54;48;2;39;39;39m"
|
||||
# define POW4 "\033[0;38;2;204;205;209;48;2;39;39;39m"
|
||||
# define POW5 "\033[1;38;2;39;39;39m"
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user