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