updated vector to video version, will probably break a lot

This commit is contained in:
herbglitch 2024-08-27 03:23:29 -06:00
parent c1e60a6d2f
commit 93dc0fa053
12 changed files with 461 additions and 97 deletions

22
tests/test.c Normal file
View file

@ -0,0 +1,22 @@
#include "test.h"
#include "arc/std/errno.h"
#include <stdio.h>
#include <stdlib.h>
uint32_t *temp_arc_test_num_checks_run__ARC_TEST__ = NULL;
uint32_t *temp_arc_test_num_checks_passed__ARC_TEST__ = NULL;
void ARC_Test_SetErrnoStream(void){
arc_errno_log_file = fopen("tests/test_error_out.txt", "w");
}
void ARC_Test_UnsetErrnoStream(void){
fclose(arc_errno_log_file);
}
#ifndef ARC_TEST_NO_MAIN
int main(void){
return 0;
}
#endif