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