summaryrefslogtreecommitdiffstats
path: root/inc/minishell.h
blob: ef33b8816f3c358bf594311ee551865f5c8d6e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _MINISHELL_H__
#define _MINISHELL_H__

#include <inttypes.h>

int ft_process_arg(const char *arg);
int ft_echo(char **com, uint8_t n);
int ft_pwd(void);
uint8_t ft_exit(const char **com);
int ft_error(const char *com, int errno);

#endif