apply.h 401 B

1234567891011121314151617181920212223
  1. #ifndef AVM_APPLY_H
  2. #define AVM_APPLY_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern flag _avm_reset;
  9. extern list avm_apply (list operator, list operand);
  10. extern list avm_recoverable_apply (list operator, list operand, int *fault);
  11. extern void avm_initialize_apply ();
  12. extern void avm_count_apply ();
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !AVM_APPLY_H */