Code cleanup in the List code. Possibly saved myself some headache in the future by using the right pointer type in the struct definition.
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@
|
||||
#define LISTDEFAULTSIZE 4
|
||||
|
||||
typedef struct {
|
||||
char** root;
|
||||
void** content;
|
||||
int size;
|
||||
int capacity;
|
||||
} List;
|
||||
|
||||
Reference in New Issue
Block a user