aboutsummaryrefslogtreecommitdiff
path: root/generic/List.c
diff options
context:
space:
mode:
authorlecoanet2001-03-14 16:30:31 +0000
committerlecoanet2001-03-14 16:30:31 +0000
commit0d2ee57010442a7dc23f3ae1c9c23713df14784a (patch)
tree4a91fe78448b0d30baa45bf263d208714c18e427 /generic/List.c
parent79d484a0a3b5eaffe1ae5fdf61e189df2194a0d4 (diff)
downloadtkzinc-0d2ee57010442a7dc23f3ae1c9c23713df14784a.zip
tkzinc-0d2ee57010442a7dc23f3ae1c9c23713df14784a.tar.gz
tkzinc-0d2ee57010442a7dc23f3ae1c9c23713df14784a.tar.bz2
tkzinc-0d2ee57010442a7dc23f3ae1c9c23713df14784a.tar.xz
Suppression de la commande inutilis�e et inutilisable
ZnListDo.
Diffstat (limited to 'generic/List.c')
-rw-r--r--generic/List.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/generic/List.c b/generic/List.c
index 2b0ed2f..ea5432c 100644
--- a/generic/List.c
+++ b/generic/List.c
@@ -590,40 +590,3 @@ ZnListTruncate(ZnList list,
cur_list->used_size = index;
}
-
-
-/*
- **********************************************************************************
- *
- * ZnListDo --
- * Apply the function 'to_do' to each entry in the list.
- * Stop either at end of list or if 'to_do' returns a
- * non nul result. 'to_do' is a function with two
- * parameters. The first is bound in turn to each value of
- * the list, the second is the data passed to ZnListDo.
- * If the scan stops at the end of the list, the function
- * returns -1, else it returns the index at which it has
- * stopped.
- *
- **********************************************************************************
- */
-
-int
-ZnListDo(ZnList list,
- void *data,
- int (*to_do)(void *value, void *data))
-{
- _ZnList *cur_list = (_ZnList *) list;
- int i;
-
- for (i = 0;
- i < cur_list->used_size &&
- !(*to_do)((void *) (cur_list->list + (i * cur_list->elem_size)), data);
- i++);
- if (i == cur_list->used_size) {
- return -1;
- }
- else {
- return i;
- }
-}