archeus/include/arc/std/array.h
2022-12-19 23:16:17 -07:00

11 lines
No EOL
174 B
C

#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_