rebl.h 522 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef rebl_H_INCLUDED
  2. #define rebl_H_INCLUDED
  3. // Comparison function for the red back tree table
  4. // retuns 0 if equal, negative if one is less than two,
  5. // and positive if onbe is equal to two.
  6. typedef int (ReblCompare)(void * one, void * two);
  7. /* This file was generated with:
  8. 'cfunctions -c -aoff -n -w rebl_proto src/rebl.c' */
  9. #ifndef CFH_REBL_PROTO
  10. #define CFH_REBL_PROTO
  11. /* From 'src/rebl.c': */
  12. #ifdef UNDER_CONSTRUCTION___
  13. extern struct Rebl_ sentinel;
  14. #endif
  15. #endif /* CFH_REBL_PROTO */
  16. #endif