Doing some code reshuffling

This commit is contained in:
2021-11-01 14:34:42 -07:00
parent 5c7468283b
commit a86592f5bd
13 changed files with 77 additions and 17 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();