summaryrefslogtreecommitdiff
path: root/42sh/src/helper.h
blob: 6032c1c70cff8f19b84f4cf3217d523ea833078d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef HELPER_H
#define HELPER_H

#include <err.h>
#include <stdio.h>
#include <stdlib.h>

#include "IO/IOBackend.h"
#include "exec/ast_exec_functions.h"
#include "parser/parser.h"
#include "utils/env.h"

#define BAD_GRAMMAR 2

int _process_input(struct string *input);

#endif /* ! HELPER_H */