summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 14:51:45 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 14:51:45 +0200
commitc9e4fb6e2ad07e13cf41d6ce6afad30b04011765 (patch)
tree74d816c107c959315ae52166dac96fe2fe0c2a5e /inc
parentWell well well that wasn't too bad, now remake everything (diff)
download42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.gz
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.bz2
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.xz
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.zst
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.zip
Solid base
Diffstat (limited to 'inc')
-rw-r--r--inc/minishell.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/inc/minishell.h b/inc/minishell.h
deleted file mode 100644
index fd207de..0000000
--- a/inc/minishell.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* ************************************************************************** */
-/* LE - / */
-/* / */
-/* minishell.h .:: .:/ . .:: */
-/* +:+:+ +: +: +:+:+ */
-/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
-/* #+# #+ #+ #+# */
-/* Created: 2019/11/01 18:46:43 by rbousset #+# ## ## #+# */
-/* Updated: 2019/11/01 18:46:44 by rbousset ### #+. /#+ ###.fr */
-/* / */
-/* / */
-/* ************************************************************************** */
-
-#ifndef _MINISHELL_H__
-#define _MINISHELL_H__
-
-#include <inttypes.h>
-
-#define FT_PS1 "joe-sh~> "
-
-int ft_process_arg(char *arg);
-int ft_echo(char **com, uint8_t n);
-int ft_pwd(void);
-uint8_t ft_exit(char **com);
-int ft_error(const char *com, int errno);
-int ft_exec(char **com);
-int ft_history(char *arg);
-char *ft_get_last_line(void);
-
-#endif