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.

calcop.h 206B

1234567891011
  1. #ifndef CALCOP_H_
  2. #define CALCOP_H_
  3. #include "state.h"
  4. void add(struct State* state);
  5. void sub(struct State* state);
  6. void mult(struct State* state);
  7. void divide(struct State* state);
  8. #endif // CALCOP_H_