90s/commands.h
2024-02-09 01:18:14 +00:00

9 lines
159 B
C

#ifndef COMMANDS_H_
#define COMMANDS_H_
int num_builtins();
bool is_builtin(char *command);
int execute(char **args);
int execute_pipe(char ***args);
#endif