changeset 119:d6a78dea70c9

Fix names
author David Demelier <markand@malikania.fr>
date Tue, 28 Feb 2012 21:15:48 +0100
parents 3c51b1f2974e
children 68784ea3fabb
files array.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/array.c	Tue Feb 28 21:15:08 2012 +0100
+++ b/array.c	Tue Feb 28 21:15:48 2012 +0100
@@ -164,7 +164,7 @@
  */
 
 void
-array_remove(struct array *arr, int index)
+array_iremove(struct array *arr, int index)
 {
 	if (arr->length > 0 && index >= 0 && index < arr->length) {
 		memmove((char *)arr->data + OFFSET(index),
@@ -180,7 +180,7 @@
  */
 
 void
-array_unref(struct array *arr, const void *data)
+array_premove(struct array *arr, const void *data)
 {
 	void *elm;
 	int i;