archeus/include/arc/std/array.h

11 lines
174 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>
typedef struct ARC_Array {
uint32_t *size;
void *data;
} ARC_Array;
#endif //ARC_STD_ARRAY_H_