compare.h 396 B

123456789101112131415161718192021
  1. #ifndef AVM_COMPARE_H
  2. #define AVM_COMPARE_H 1
  3. #include <avm/lists.h>
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. extern list avm_comparison (list operand, int *fault);
  9. extern list avm_binary_comparison (list left_operand, list right_operand, int *fault);
  10. extern void avm_initialize_compare ();
  11. extern void avm_count_compare ();
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* !AVM_COMPARE_H */