90s/commands.h

11 lines
220 B
C
Raw Normal View History

#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);
2024-02-09 02:18:14 +01:00
int execute_pipe(char ***args);
#endif