abac0-leak
Last change
on this file since 63dcd99 was
15200be,
checked in by Mike Ryan <mikeryan@…>, 14 years ago
|
move libabac into its own directory
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[379a53f] | 1 | #include <stdlib.h> |
---|
| 2 | |
---|
[6d5623e] | 3 | #include "abac_list.h" |
---|
[3c251d0] | 4 | #include "abac_util.h" |
---|
[379a53f] | 5 | |
---|
[6d5623e] | 6 | abac_list_t *abac_list_new(void) { |
---|
[3c251d0] | 7 | abac_list_t *ret = abac_xmalloc(sizeof(abac_list_t)); |
---|
[379a53f] | 8 | ret->elts = NULL; |
---|
[90d20f0] | 9 | ret->size = 0; |
---|
[379a53f] | 10 | return ret; |
---|
| 11 | } |
---|
| 12 | |
---|
[6d5623e] | 13 | void abac_list_add(abac_list_t *list, void *elt) { |
---|
[3c251d0] | 14 | abac_list_element_t *new_element = abac_xmalloc(sizeof(abac_list_element_t)); |
---|
[379a53f] | 15 | |
---|
| 16 | new_element->ptr = elt; |
---|
| 17 | DL_APPEND(list->elts, new_element); |
---|
[90d20f0] | 18 | ++list->size; |
---|
[379a53f] | 19 | } |
---|
[d8990b3] | 20 | |
---|
[6d5623e] | 21 | int abac_list_remove(abac_list_t *list, void *elt) { |
---|
| 22 | abac_list_element_t *cur; |
---|
[d526b7a] | 23 | |
---|
| 24 | // iterate the list, remove the item if we find it |
---|
| 25 | DL_FOREACH(list->elts, cur) { |
---|
| 26 | if (cur->ptr == elt) { |
---|
| 27 | DL_DELETE(list->elts, cur); |
---|
[be963dc] | 28 | free(cur); |
---|
[90d20f0] | 29 | --list->size; |
---|
[d526b7a] | 30 | return 1; |
---|
| 31 | } |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | // reutrn false if we don't |
---|
| 35 | return 0; |
---|
| 36 | } |
---|
| 37 | |
---|
[6d5623e] | 38 | int abac_list_size(abac_list_t *list) { |
---|
[90d20f0] | 39 | return list->size; |
---|
| 40 | } |
---|
| 41 | |
---|
[6d5623e] | 42 | void abac_list_free(abac_list_t *list) { |
---|
| 43 | abac_list_element_t *elt, *tmp; |
---|
[d8990b3] | 44 | |
---|
| 45 | // free everthing in the list |
---|
| 46 | DL_FOREACH_SAFE(list->elts, elt, tmp) { |
---|
| 47 | DL_DELETE(list->elts, elt); |
---|
| 48 | free(elt); |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | // free the list |
---|
[23f8997] | 52 | free(list); |
---|
[d8990b3] | 53 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.