Archeus 0.0.0
A C library and game engine that focuses on documentation
Loading...
Searching...
No Matches
array.h
Go to the documentation of this file.
1#ifndef ARC_STD_ARRAY_H_
2#define ARC_STD_ARRAY_H_
3
4#include <stdint.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10/**
11 * @brief a type that holds an array of data and its size
12*/
13typedef struct ARC_Array {
14 uint32_t size;
15 void *data;
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif //ARC_STD_ARRAY_H_
struct ARC_Array ARC_Array
a type that holds an array of data and its size
a type that holds an array of data and its size
Definition array.h:13
uint32_t size
Definition array.h:14
void * data
Definition array.h:15