Doing some code reshuffling

This commit is contained in:
2021-11-01 14:34:42 -07:00
parent 38c10c0db0
commit 45b4f70799
54 changed files with 78 additions and 18 deletions

8
test/util/array.c Normal file
View File

@ -0,0 +1,8 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "array.h"

12
test/util/array.h Normal file
View File

@ -0,0 +1,12 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <unity.h>
#include <util/array.h>
int test_array_h();