1234567891011121314151617181920212223242526272829303132 |
- #ifndef rebl_H_INCLUDED
- #define rebl_H_INCLUDED
- // Comparison function for the red back tree table
- // retuns 0 if equal, negative if one is less than two,
- // and positive if onbe is equal to two.
- typedef int (ReblCompare)(void * one, void * two);
- /* This file was generated with:
- 'cfunctions -c -aoff -n -w rebl_proto src/rebl.c' */
- #ifndef CFH_REBL_PROTO
- #define CFH_REBL_PROTO
- /* From 'src/rebl.c': */
- #ifdef UNDER_CONSTRUCTION___
- extern struct Rebl_ sentinel;
- #endif
- #endif /* CFH_REBL_PROTO */
- #endif
|