diff options
author | venaas <venaas> | 2007-09-18 15:06:15 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2007-09-18 15:06:15 +0000 |
commit | 7dd66d70b0470b76b44eb5416f143f080789b27a (patch) | |
tree | 80bd1a2320b4e32b19193059693fce3343c90437 /list.h | |
parent | 64564a6f7d0d84722f3300173a0d0bbb238dafd4 (diff) |
now changed to allow prefix/prefixlen for host
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@159 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,9 @@ int list_push(struct list *list, void *data); /* removes first entry from list and returns data */ void *list_shift(struct list *list); +/* removes first entry with matching data pointer */ +void list_removedata(struct list *list, void *data); + /* returns first node */ struct list_node *list_first(struct list *list); |