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.

functions.h 242B

12345678910111213
  1. #ifndef FUNCTIONS_H_
  2. #define FUNCTIONS_H_
  3. #include "state.h"
  4. void initFunctions();
  5. int tryCallFunctions(char* func, struct State* state);
  6. void colonCmd(struct State* state);
  7. void semicolonCmd(struct State* state);
  8. #endif // FUNCTIONS_H_