add aux branch

This commit is contained in:
dzruyk
2023-03-25 04:17:47 +03:00
parent d4ef45f45b
commit 98dabf1f73
9 changed files with 68 additions and 123 deletions

15
aux_test.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
#include "munit.h"
#include "aux_lib.h"
static const MunitSuite test_suite = {
//FILL ME
};
int
main(int argc, const char *argv[])
{
munit_suite_main(&test_suite, (void *) "string library test", argc, (char * const*) argv);
return 0;
}