langatator/src/evaluator.h

8 lines
172 B
C
Raw Normal View History

#include "./state.h"
2022-04-29 10:30:44 +00:00
#ifndef EVALUATOR_H_
#define EVALUATOR_H_
int evaluate(struct StateContainer* state, char* inputStr, int* resultPtr, unsigned char* typePtr);
2022-04-29 10:30:44 +00:00
#endif