1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File : $Source: /home/tina/cvs/tina-libs/tina/sys/sysLst_rec.h,v $
37 * Date : $Date: 2008/12/02 22:03:07 $
38 * Version : $Revision: 1.3 $
39 * CVS Id : $Id: sysLst_rec.h,v 1.3 2008/12/02 22:03:07 paul Exp $
40 *
41 * Notes :
42 *
43 *********
44 */
45
46 #ifndef TINA_SYS_LST_REC_HDR
47 #define TINA_SYS_LST_REC_HDR
48
49 #include <tina/sys/sys_LstDef.h>
50
51 #ifdef __cplusplus
52 extern "C" {
53 #endif /* __cplusplus */
54
55 Tstring *reclist_string_free(Tstring * str, void (*freefunc) (), int type, void *data);
56 void *reclist_free(void *ptr, int ptype, void (*freefunc) (), int type, void *data);
57 List *reclist_list_free(List * list, void (*freefunc) (), int type, void *data);
58 Tstring *reclist_string_copy(Tstring * str, void *(*func) (), int type, void *data);
59 List *reclist_list_copy(List * list, void *(*func) (), int type, void *data);
60 void *reclist_copy(void *ptr, int ptype, void *(*func) (), int type, void *data);
61 void *reclist_copy(void *ptr, int ptype, void *(*func) (), int type, void *data);
62 List *reclist_string_flat(Tstring * str, void *(*func) (), int type, void *data);
63 List *reclist_list_flat(List * list, void *(*func) (), int type, void *data);
64 List *reclist_flat(void *ptr, int *ptype, void *(*func) (), int type, void *data);
65 List *reclist_flat(void *ptr, int *ptype, void *(*func) (), int type, void *data);
66 Tstring *reclist_string_update(Tstring * str, void *(*func) (), int type, void *data);
67 void *reclist_update(void *ptr, int *ptype, void *(*func) (), int type, void *data);
68 List *reclist_list_update(List * list, void *(*func) (), int type, void *data);
69 Tstring *reclist_string_rm_entry(Tstring * str, void *to, void (*freefunc) ());
70 List *reclist_list_rm_entry(List * list, void *to, void (*freefunc) ());
71 void *reclist_rm_entry(void *ptr, int type, void *to, void (*freefunc) ());
72 void *reclist_rm_entry(void *ptr, int type, void *to, void (*freefunc) ());
73 void reclist_string_apply(Tstring * str, void (*func) (), int type, void *data);
74 void reclist_list_apply(List * list, void (*func) (), int type, void *data);
75 void reclist_apply(void *ptr, int ptype, void (*func) (), int type, void *data);
76 void reclist_apply(void *ptr, int ptype, void (*func) (), int type, void *data);
77
78 #ifdef __cplusplus
79 }
80 #endif /* __cplusplus */
81
82 #endif /* TINA_SYS_LST_REC_HDR */
83
84
85
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.