changed array size to no longer be a pointer, need to check every file that references array to hopefully not have broken anything

This commit is contained in:
herbglitch 2023-07-07 00:58:23 -06:00
parent 56a4aa9d39
commit 533541b852
6 changed files with 29 additions and 24 deletions

View file

@ -11,7 +11,7 @@ extern "C" {
* @brief a type that holds an array of data and its size
*/
typedef struct ARC_Array {
uint32_t *size;
uint32_t size;
void *data;
} ARC_Array;