blob: f2b9a94f5f17aa56df0cb7fb7451480a53a5077e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _MINISHELL_H__
#define _MINISHELL_H__
#include <inttypes.h>
#define FT_PS1 "joe-sh~> "
int ft_process_arg(const 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 **app);
int ft_history(char *arg);
char *ft_get_last_line(void);
#endif
|