archeus/include/arc/std/array.h

14 lines
239 B
C
Raw Normal View History

2022-12-19 23:16:17 -07:00
#ifndef ARC_STD_ARRAY_H_
#define ARC_STD_ARRAY_H_
#include <stdint.h>
/**
* @brief a type that holds an array of data and its size
*/
2022-12-19 23:16:17 -07:00
typedef struct ARC_Array {
uint32_t *size;
void *data;
} ARC_Array;
#endif //ARC_STD_ARRAY_H_