clay/generator/array_define.template.c

6 lines
86 B
C

typedef struct
{
int32_t capacity;
int32_t length;
$TYPE$ *internalArray;
} $NAME$;