summaryrefslogtreecommitdiff
path: root/dlib
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-04-04 00:23:21 +0200
committerjcid <devnull@localhost>2008-04-04 00:23:21 +0200
commit7650ae10e77d0058fe617ef670bad60349b45fed (patch)
tree73f1acb8f5a87c21391ea9d6925b5e6608bff649 /dlib
parent963d90761006e0b296f64ea93e29bbac696bae09 (diff)
- Fixed a SEGFAULT bug in http.c (handling of web->url).
- Fixed handling of #anchors with repush, and other operations.
Diffstat (limited to 'dlib')
-rw-r--r--dlib/dlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dlib/dlib.h b/dlib/dlib.h
index 3eeb34de..d86adc96 100644
--- a/dlib/dlib.h
+++ b/dlib/dlib.h
@@ -133,6 +133,7 @@ Dlist *dList_new(int size);
void dList_free (Dlist *lp);
void dList_append (Dlist *lp, void *data);
void dList_prepend (Dlist *lp, void *data);
+void dList_insert_pos (Dlist *lp, void *data, int pos0);
int dList_length (Dlist *lp);
void dList_remove (Dlist *lp, const void *data);
void dList_remove_fast (Dlist *lp, const void *data);