* of the GNU Lesser General Public License.
*/
+#ifndef _UCW_BINHEAP_NODE_H
+#define _UCW_BINHEAP_NODE_H
+
struct bh_node {
struct bh_node *first_son;
struct bh_node *last_son;
struct bh_heap {
struct bh_node root;
};
+
+#endif
* of the GNU Lesser General Public License.
*/
+#ifndef _UCW_BITSIG_H
+#define _UCW_BITSIG_H
+
struct bitsig;
struct bitsig *bitsig_init(uns perrlog, uns maxn);
void bitsig_free(struct bitsig *b);
int bitsig_member(struct bitsig *b, byte *item);
int bitsig_insert(struct bitsig *b, byte *item);
+
+#endif
* printf("%s\n", PROF_STR(cnt));
*/
+#ifndef _UCW_PROFILE_H
+#define _UCW_PROFILE_H
+
/* PROFILE_TOD: gettimeofday() profiler */
struct prof_tod {
#define PROF_STR(C) "?"
#endif
+
+#endif