mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-09-23 23:44:56 +00:00
formatting source-code for b388e4a309
This commit is contained in:
@@ -3,7 +3,8 @@
|
||||
#define DEFAULT_CAPACITY 1 << 4
|
||||
#define INDEX_OUT_OF_BOUNDS NULL
|
||||
|
||||
typedef struct dynamic_array {
|
||||
typedef struct dynamic_array
|
||||
{
|
||||
void **items;
|
||||
unsigned size;
|
||||
unsigned capacity;
|
||||
|
||||
Reference in New Issue
Block a user