Renamed 'data' to 'items', to be more consistent with the old API.

This commit is contained in:
Scott Anderson 2017-05-10 13:18:20 +12:00
parent 8429e871f8
commit 95737e38b8
2 changed files with 31 additions and 30 deletions

View file

@ -8,7 +8,7 @@ typedef struct {
size_t capacity;
size_t length;
size_t memb_size;
void *data;
void *items;
} list_t;
/*