offbrand
A collection of generic, reference counted datastructures in C for C
 All Classes Files Functions Variables Typedefs Macros Groups
obtest_private.h
Go to the documentation of this file.
1 
7 #ifndef OBTEST_PRIVATE_H
8 #define OBTEST_PRIVATE_H
9 
10 #include "../obtest.h"
11 
12 /* DATA */
13 
20  uint32_t id;
21 };
22 
28 ob_hash_t obtest_hash(const obj *to_hash);
29 
40 int8_t obtest_compare(const obj *a, const obj *b);
41 
47 void obtest_display(const obj *test);
48 
56 void obtest_destroy(obj *to_dealloc);
57 
58 #endif