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.

logic.h 270B

123456789101112131415
  1. #ifndef LOGIC_H_
  2. #define LOGIC_H_
  3. #include "state.h"
  4. void initLogic();
  5. void ifCmd(struct State* state);
  6. void elseCmd(struct State* state);
  7. void thenCmd(struct State* state);
  8. void beginCmd(struct State* state);
  9. void untilCmd(struct State* state);
  10. #endif // LOGIC_H_