90s

Minimalist, customizable shell written in C99 with syntax highlighting
git clone https://codeberg.org/night0721/90s
Log | Files | Refs | README | LICENSE

commands.h (220B)


      1 #ifndef COMMANDS_H_
      2 #define COMMANDS_H_
      3 
      4 char *replace_absolute_home(char *str);
      5 int num_builtins();
      6 bool is_builtin(char *command);
      7 int execute(char **args, int fd, int options);
      8 int execute_pipe(char ***args);
      9 
     10 #endif