builtins.h

This commit is contained in:
Loic Deridder
2025-01-14 11:24:44 +01:00
parent d073475524
commit 2bd971c726
3 changed files with 12 additions and 1 deletions

10
includes/builtins.h Normal file
View 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
View 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