got chemical creation string working

This commit is contained in:
herbglitch 2025-01-29 17:31:18 -07:00
parent 5b2b8ef21c
commit 122eb1d351
3 changed files with 334 additions and 34 deletions

View file

@ -5,11 +5,11 @@
ARC_TEST(Chemical_BasicTest){
ARC_CHECK(arc_errno == 0);
// ARC_Chemical *chemical;
// ARC_Chemical_Create(&chemical);
ARC_Chemical *chemical;
ARC_Chemical_Create(&chemical);
ARC_CHECK(arc_errno == 0);
//cleanup
// ARC_Chemical_Destroy(chemical);
ARC_Chemical_Destroy(chemical);
}