diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | src/main.h | 12 |
2 files changed, 10 insertions, 6 deletions
@@ -35,3 +35,7 @@ Going to try and make it mostly POSIX compliant. - [ ] Env="something" ... executable args - [ ] rcfile - [ ] rcfile in config dir + +## testing + +- [ ] use shellcheck-bin @@ -7,12 +7,12 @@ typedef struct{ } SHELL_OB; typedef enum{ - Stdout=0, - Redirect=1, - Append=2, - Pipe=3, - Continue=4, - If=5, + Stdout, + Redirect, + Append, + Pipe, + Continue, + If, } cmd_t; typedef struct CMD{ |
