Initial commit

This commit is contained in:
2025-08-28 04:59:23 -07:00
commit 5ac6aaf900
14 changed files with 4983 additions and 0 deletions

8
test/CMakeLists.txt Normal file
View File

@ -0,0 +1,8 @@
link_libraries(refcount)
add_compile_options(-Wall)
add_executable(test_list test_list.c)
add_test(NAME list COMMAND test_list)
add_executable(test_refcount test_refcount.c)
add_test(NAME refcount COMMAND test_refcount)