C_TP_Forth/state.c
2022-12-08 06:11:40 +01:00

5 lines
126 B
C

#include "state.h"
char* getCurrentToken(struct State* state) {
return state->prog->tokens[state->instructionPointer];
}