Résultat du TP en C sur Forth
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

state.c 126B

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