aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-11 14:21:01 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-11 14:21:01 -0400
commitfe9037ace331d39fde00574a161b88a7f0ee0d44 (patch)
tree9484c0db80f70ad684648f6546bdfc8826f8eab6
parent3838a95e4905efe3833fd809910dcc1d52e3dd58 (diff)
parent4c8749822249f9cb5a80c662789732bcf7463893 (diff)
Merge pull request #18 from taiyu-len/master
list_insert now works as it should
-rw-r--r--sway/list.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/sway/list.c b/sway/list.c
index 68455f89..1be1e17c 100644
--- a/sway/list.c
+++ b/sway/list.c
@@ -11,6 +11,13 @@ list_t *create_list(void) {
return list;
}
+static void list_resize(list_t *list) {
+ if (list->length == list->capacity) {
+ list->capacity += 10;
+ list->items = realloc(list->items, sizeof(void*) * list->capacity);
+ }
+}
+
void list_free(list_t *list) {
if (list == NULL) {
return;
@@ -20,25 +27,20 @@ void list_free(list_t *list) {
}
void list_add(list_t *list, void *item) {
- if (list->length == list->capacity) {
- list->capacity += 10;
- list->items = realloc(list->items, sizeof(void*) * list->capacity);
- }
+ list_resize(list);
list->items[list->length++] = item;
}
void list_insert(list_t *list, int index, void *item) {
- // TODO: Implement this properly
- if (list->length == list->capacity) {
- list->capacity += 10;
- list->items = realloc(list->items, sizeof(void*) * list->capacity);
- }
- list->items[list->length++] = item;
+ list_resize(list);
+ memmove(&list->items[index + 1], &list->items[index], sizeof(void*) * (list->length - index));
+ list->length++;
+ list->items[index] = item;
}
void list_del(list_t *list, int index) {
list->length--;
- memmove(&list->items[index], &list->items[index + 1], sizeof(void*) * (list->capacity - index - 1));
+ memmove(&list->items[index], &list->items[index + 1], sizeof(void*) * (list->length - index));
}
void list_cat(list_t *list, list_t *source) {