summaryrefslogtreecommitdiffstats
path: root/inc/minishell.h
blob: f92195cb5bd00644ba7ccd5a03b8a126d64e1616 (plain)
1
2
3
4
5
6
7
8
9
10
#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);

#endif