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
7
extern
"C"
{
8
#endif
9
10
/**
11
* @brief a type that holds an array of data and its size
12
*/
13
typedef
struct
ARC_Array
{
14
uint32_t
size
;
15
void
*
data
;
16
}
ARC_Array
;
17
18
#ifdef __cplusplus
19
}
20
#endif
21
22
#endif
//ARC_STD_ARRAY_H_
ARC_Array
struct ARC_Array ARC_Array
a type that holds an array of data and its size
ARC_Array
a type that holds an array of data and its size
Definition
array.h:13
ARC_Array::size
uint32_t size
Definition
array.h:14
ARC_Array::data
void * data
Definition
array.h:15
include
arc
std
array.h