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.

show.h 211B

123456789101112
  1. #ifndef SHOW_H_
  2. #define SHOW_H_
  3. #include "state.h"
  4. void point(struct State* state);
  5. void pointS(struct State* state);
  6. void pointQuote(struct State* state);
  7. void crCmd(struct State* state);
  8. #endif // SHOW_H_