90s/include/commands.h
2024-07-01 17:40:47 +01:00

10 lines
220 B
C

#ifndef COMMANDS_H_
#define COMMANDS_H_
char *replace_absolute_home(char *str);
int num_builtins();
bool is_builtin(char *command);
int execute(char **args, int fd, int options);
int execute_pipe(char ***args);
#endif