diff options
Diffstat (limited to 'list/list.c')
| -rwxr-xr-x | list/list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/list/list.c b/list/list.c index 4898790..c0f6c30 100755 --- a/list/list.c +++ b/list/list.c @@ -17,6 +17,7 @@ void _list_realloc(void **list, u32 n){ *list = (void*)nh+sizeof(struct list_header); } +// TODO look into removing adjusting the list size when the size decreases void _list_adjust(void **list){ struct list_header *h = list_header(*list); if(h == NULL) return; // TODO error warning?? |
