decons.h 320 B

1234567891011121314151617181920
  1. #ifndef AVM_DECONS_H
  2. #define AVM_DECONS_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern list avm_deconstruction (list pointer, list operand, int *fault);
  9. extern void avm_initialize_decons ();
  10. extern void avm_count_decons ();
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* !AVM_DECONS_H */