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.

exec.h 150B

123456789
  1. #ifndef EXEC_H_
  2. #define EXEC_H_
  3. #include "state.h"
  4. #include "command.h"
  5. void execute(struct State* state, struct CmdList* cmds);
  6. #endif // EXEC_H_