diff options
author | Jakob Kaivo <jkk@x1-nano.kaivo.local> | 2023-04-01 21:39:06 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@x1-nano.kaivo.local> | 2023-04-01 21:39:06 -0400 |
commit | b732995c5217d0619fd8d67653b930665ca09d12 (patch) | |
tree | 5270548dd778dc0d571d6f4f9ff3551a5028ec12 /sh.h | |
parent | d8fcf51d92039f8edfffafada18f78b047afae8f (diff) |
begin to handle aliases
Diffstat (limited to 'sh.h')
-rw-r--r-- | sh.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -42,6 +42,7 @@ struct command; struct command *sh_parse(const char *cmdline); void sh_freecmd(struct command *cmd); int sh_execute(struct command *cmd); +char *sh_get_alias(const char *cmd); void sh_set(char option, int value); void sh_seto(char *option, int value); |