blob: e7ab0640c1afda3af27c83ce3085dc9245f33283 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "typeutils.h"
#include "parse.h"
typedef struct {
KeyValMap aliases;
KeyValMap shell_vars;
} ShellState;
void run_pipeline(Pipeline pl, ShellState* shstate);
|