7 lines
172 B
C
7 lines
172 B
C
#include "./state.h"
|
|
#ifndef EVALUATOR_H_
|
|
#define EVALUATOR_H_
|
|
|
|
int evaluate(struct StateContainer* state, char* inputStr, int* resultPtr, unsigned char* typePtr);
|
|
|
|
#endif
|