exmodes.h 600 B

12345678910111213141516171819202122232425
  1. #ifndef AVM_EXMODES_H
  2. #define AVM_EXMODES_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern void avm_interact (list interactor, int step_mode, int ask_to_overwrite_mode, int quiet_mode);
  9. extern list avm_recoverable_interact (list interactor, int *fault);
  10. extern void avm_byte_transduce (list operator);
  11. extern void avm_line_map (list operator);
  12. extern void avm_disable_interaction ();
  13. extern void avm_trace_interaction ();
  14. extern void avm_initialize_exmodes ();
  15. extern void avm_count_exmodes ();
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* !AVM_EXMODES_H */