summaryrefslogtreecommitdiff
path: root/exec.h
diff options
context:
space:
mode:
authorÁkos Kőrösi <korakos99@gmail.com>2026-05-18 16:23:26 +0200
committerÁkos Kőrösi <korakos99@gmail.com>2026-05-18 16:23:26 +0200
commitca675175742174d6bfcd0263583f840e250fc58f (patch)
treecd11ec9f8345fa31dddb2a5f0c21d59bb19816b1 /exec.h
parent24ba34266cc977b22d777bceca9683a45dd73042 (diff)
quicksaving
Diffstat (limited to 'exec.h')
-rw-r--r--exec.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/exec.h b/exec.h
index ca0b1a5..9ee8164 100644
--- a/exec.h
+++ b/exec.h
@@ -18,12 +18,9 @@ typedef struct {
int stdout_fd;
IntVec child_close_fds;
IntVec parent_close_fds;
-} ExecutableCommand;
+ Connector term;
+} Command;
-
-typedef struct {
- KeyValMap aliases;
- KeyValMap shell_vars;
-} ShellState;
+DECLARE_VEC(Command, CommandVec)
void process_input_line(char* line, ShellState* shstate);