11 lines
174 B
C
11 lines
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_
|