mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-24 02:16:03 +00:00
10 lines
304 B
C
10 lines
304 B
C
|
typedef struct
|
||
|
{
|
||
|
uint32_t capacity;
|
||
|
uint32_t length;
|
||
|
$TYPE$ *internalArray;
|
||
|
} $NAME$;
|
||
|
|
||
|
$NAME$ $NAME$_Allocate_Arena(uint32_t capacity, Clay_Arena *arena) {
|
||
|
return ($NAME$){.capacity = capacity, .length = 0, .internalArray = ($TYPE$ *)Clay__Array_Allocate_Arena(capacity, sizeof($TYPE$), arena)};
|
||
|
}
|