+ * Returns a pointer to the head of the new list.
+ */
+struct ll *lladdend(struct ll *curll, void *object);
+
+/**
+ * lldel - Remove an item from a linked list.
+ * @curll: The list to remove the item from.
+ * @object: The object to remove.
+ * @objectcmp: A pointer to a comparision function for the object type.
+ *
+ * Trawls through the list looking for the object. If it's found then it
+ * is removed from the list. Only one occurance is searched for. Returns
+ * a pointer to the head of the new list.