summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vector.c6
-rw-r--r--src/vector.h12
2 files changed, 9 insertions, 9 deletions
diff --git a/src/vector.c b/src/vector.c
index 2f913de..7bb1d80 100644
--- a/src/vector.c
+++ b/src/vector.c
@@ -1,4 +1,4 @@
-/* $Id: vector.c,v 1.6 2002-05-24 04:45:32 rjkaes Exp $
+/* $Id: vector.c,v 1.7 2003-05-29 20:47:52 rjkaes Exp $
*
* A vector implementation. The vector can be of an arbitrary length, and
* the data for each entry is an lump of data (the size is stored in the
@@ -97,7 +97,7 @@ vector_delete(vector_t vector)
}
/*
- * Inserts an entry into the vector. The entry is an arbitrary
+ * Appends an entry into the vector. The entry is an arbitrary
* collection of bytes of _len_ octets. The data is copied into the
* vector, so the original data must be freed to avoid a memory leak.
* The "data" must be non-NULL and the "len" must be greater than zero.
@@ -106,7 +106,7 @@ vector_delete(vector_t vector)
* negative number if there are errors
*/
int
-vector_insert(vector_t vector, void *data, ssize_t len)
+vector_append(vector_t vector, void *data, ssize_t len)
{
struct vectorentry_s *entry;
diff --git a/src/vector.h b/src/vector.h
index dadc421..8b938f1 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -1,4 +1,4 @@
-/* $Id: vector.h,v 1.1 2002-04-07 21:29:23 rjkaes Exp $
+/* $Id: vector.h,v 1.2 2003-05-29 20:47:51 rjkaes Exp $
*
* A vector implementation. The vector can be of an arbritrary length, and
* the data for each entry is an lump of data (the size is stored in the
@@ -44,15 +44,15 @@ extern vector_t vector_create(void);
extern int vector_delete(vector_t vector);
/*
- * When you insert a piece of data into the vector, the data will be
- * duplicated, so you must free your copy if it was created on the
- * heap. The data must be non-NULL and the length must be greater
- * than zero.
+ * Append an entry to the end of the vector. When you insert a piece of
+ * data into the vector, the data will be duplicated, so you must free your
+ * copy if it was created on the heap. The data must be non-NULL and the
+ * length must be greater than zero.
*
* Returns: negative on error
* 0 upon successful insert.
*/
-extern int vector_insert(vector_t vector, void *data, ssize_t len);
+extern int vector_append(vector_t vector, void *data, ssize_t len);
/*
* A pointer to the data at position "pos" (zero based) is returned in the