90s/commands.h

10 lines
159 B
C
Raw Normal View History

#ifndef COMMANDS_H_
#define COMMANDS_H_
int num_builtins();
bool is_builtin(char *command);
int execute(char **args);
2024-02-09 02:18:14 +01:00
int execute_pipe(char ***args);
#endif