[PATCH] Add function to append to an object_list.
[git.git] / object.c
index 72f6aa5..63e6e78 100644 (file)
--- a/object.c
+++ b/object.c
@@ -184,6 +184,17 @@ struct object_list *object_list_insert(struct object *item,
         return new_list;
 }
 
+void object_list_append(struct object *item,
+                       struct object_list **list_p)
+{
+       while (*list_p) {
+               list_p = &((*list_p)->next);
+       }
+       *list_p = xmalloc(sizeof(struct object_list));
+       (*list_p)->next = NULL;
+       (*list_p)->item = item;
+}
+
 unsigned object_list_length(struct object_list *list)
 {
        unsigned ret = 0;