formout.h 496 B

1234567891011121314151617181920212223
  1. #ifndef AVM_FORMOUT_H
  2. #define AVM_FORMOUT_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern void avm_output (FILE * repository, char *filename, list preamble, list contents, int trace_mode);
  9. extern void avm_output_as_directed (list data, int ask_to_overwrite_mode, int verbose_mode);
  10. extern void avm_put_bytes (list bytes);
  11. extern void avm_initialize_formout ();
  12. extern void avm_count_formout ();
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !AVM_FORMOUT_H */