summaryrefslogtreecommitdiffstats
path: root/common/list.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2006-09-27 16:24:26 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2006-09-27 16:24:26 +0000
commit247635fe3905e4cc084a167c6db6e53dd7b0554d (patch)
treef04ebede4f19760416493440d945453d791c4ab6 /common/list.h
parent30e40ae987f4723deda3949879a6c0cd45fec92a (diff)
Support for prioritized watches
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/list.h b/common/list.h
index 1b502110..f6576429 100644
--- a/common/list.h
+++ b/common/list.h
@@ -37,6 +37,8 @@ struct slist *slist_append(struct slist *list, void *data);
struct slist *slist_prepend(struct slist *list, void *data);
+struct slist *slist_insert_before(struct slist *list, struct slist *sibling, void *data);
+
struct slist *slist_remove(struct slist *list, void *data);
struct slist *slist_find(struct slist *list, const void *data,