foxp/src/process.h

11 lines
227 B
C
Raw Normal View History

2024-06-09 16:39:12 +00:00
#include <stdbool.h>
#include "syntax.h"
typedef struct ProcessingData {
struct ProcessingData* prev;
char* replacethis;
tSyntaxElement* replacewiththis;
} tProcessingData;
void process(tSyntaxElement*, tProcessingData*);