blob: 272406882e2766e664f9ddc91c6fe733ed40009e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PREPROCESS_H
#define PREPROCESS_H
#include <context.h>
#define MACRO_SKIP ((char)128)
#define MACRO_NEWLINE ((char)129)
void preprocess(struct ctx *ctx);
#endif
|