diff options
Diffstat (limited to 'array.h')
-rw-r--r-- | array.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,7 +31,8 @@ enum atype {array_indexed, array_assoc}; typedef struct array { enum atype type; - arrayind_t max_index, num_elements; + arrayind_t max_index; + int num_elements; struct array_element *head; } ARRAY; |