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