diff options
| author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2006-03-14 21:35:31 +0000 | 
|---|---|---|
| committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2006-03-14 21:35:31 +0000 | 
| commit | 7b8a634126a3aa79e08d9d35d207f55016f9bda9 (patch) | |
| tree | ca5e49960f8d39e57cefee0613e86e360b279392 /common/list.h | |
| parent | 405c12ea958b4ad04fc416a39d4ec6e64f6f991d (diff) | |
added slist_foreach function and fixed small memory leak
Diffstat (limited to 'common/list.h')
| -rw-r--r-- | common/list.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/common/list.h b/common/list.h index 1838370c..026d470c 100644 --- a/common/list.h +++ b/common/list.h @@ -31,6 +31,7 @@ struct slist {  };  typedef int (*cmp_func_t)(const void *a, const void *b); +typedef void (*slist_func_t)(void *data, void *user_data);  struct slist *slist_append(struct slist *list, void *data); @@ -39,6 +40,7 @@ struct slist *slist_remove(struct slist *list, void *data);  struct slist *slist_find(struct slist *list, const void *data,  			cmp_func_t cmp_func); +void slist_foreach(struct slist *list, slist_func_t func, void *user_data);  void slist_free(struct slist *list);  #endif /* __LIST_H */  | 
