started working on chemical (arc config), also removed files/config as that is now handled by parser/csv

This commit is contained in:
herbglitch 2024-12-22 23:31:37 -07:00
parent 4b59d5c062
commit 4264f5c5ca
3 changed files with 353 additions and 0 deletions

14
tests/std/chemical.c Normal file
View file

@ -0,0 +1,14 @@
#include "../../test.h"
#include "arc/std/errno.h"
#include "arc/std/chemical.h"
//#include <stdlib.h>
ARC_TEST(Chemical_BasicTest){
ARC_Chemical *chemical;
ARC_Chemical_Create(&chemical);
//cleanup
ARC_Chemical_Destroy(chemical);
}