mirror of
https://codeberg.org/andyscott/marCsweep.git
synced 2024-11-09 13:50:51 -05:00
16 lines
231 B
C
16 lines
231 B
C
#ifndef TEST_GC_H
|
|
#define TEST_GC_H
|
|
|
|
void test_int_alloc(void);
|
|
|
|
void test_pair_alloc(void);
|
|
|
|
void test_obj_count(void);
|
|
|
|
void test_nested_pair(void);
|
|
|
|
void test_unreachable(void);
|
|
|
|
void test_auto_gc(void);
|
|
|
|
#endif /* TEST_GC_H */
|