Missing make_path() added for re_filterfile.
[privoxy.git] / list.h
1 #ifndef _LIST_H
2 #define _LIST_H
3 #define LIST_H_VERSION "$Id: list.h,v 1.2 2001/06/01 18:49:17 jongfoster Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/list.h,v $
7  *
8  * Purpose     :  Declares functions to handle lists.
9  *                Functions declared include:
10  *                   `destroy_list', `enlist' and `list_to_text'
11  *
12  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
13  *                IJBSWA team.  http://ijbswa.sourceforge.net
14  *
15  *                Based on the Internet Junkbuster originally written
16  *                by and Copyright (C) 1997 Anonymous Coders and 
17  *                Junkbusters Corporation.  http://www.junkbusters.com
18  *
19  *                This program is free software; you can redistribute it 
20  *                and/or modify it under the terms of the GNU General
21  *                Public License as published by the Free Software
22  *                Foundation; either version 2 of the License, or (at
23  *                your option) any later version.
24  *
25  *                This program is distributed in the hope that it will
26  *                be useful, but WITHOUT ANY WARRANTY; without even the
27  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
28  *                PARTICULAR PURPOSE.  See the GNU General Public
29  *                License for more details.
30  *
31  *                The GNU General Public License should be included with
32  *                this file.  If not, you can view it at
33  *                http://www.gnu.org/copyleft/gpl.html
34  *                or write to the Free Software Foundation, Inc., 59
35  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
36  *
37  * Revisions   :
38  *    $Log: list.h,v $
39  *    Revision 1.2  2001/06/01 18:49:17  jongfoster
40  *    Replaced "list_share" with "list" - the tiny memory gain was not
41  *    worth the extra complexity.
42  *
43  *    Revision 1.1  2001/05/31 21:11:53  jongfoster
44  *    - Moved linked list support to new "list.c" file.
45  *      Structure definitions are still in project.h,
46  *      function prototypes are now in "list.h".
47  *    - Added support for "struct list_share", which is identical
48  *      to "struct list" except it saves memory by not duplicating
49  *      the strings.  Obviously, this only works if there is some
50  *      other way of managing the memory used by the strings.
51  *      (These list_share lists are used for lists which last
52  *      for only 1 request, and where all the list entries are
53  *      just coming directly from entries in the actionsfile.)
54  *      Note that you still need to destroy list_share lists
55  *      properly to free the nodes - it's only the strings
56  *      which are shared.
57  *
58  *
59  *********************************************************************/
60 \f
61
62 #include "project.h"
63
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
67
68
69 extern void enlist(struct list *h, const char *s);
70 extern void enlist_unique(struct list *header, const char *str, int n);
71 extern void enlist_first(struct list *header, const char *str);
72 extern int   list_remove_item(struct list *header, const char *str);
73
74 extern void  list_append_list_unique(struct list *dest, const struct list *src);
75 extern void  list_append_list_unique(struct list *dest, const struct list *src);
76 extern int   list_remove_list(struct list *header, const struct list *to_remove);
77 extern void  list_duplicate(struct list *dest, const struct list *src);
78
79 extern void  destroy_list(struct list *h);
80
81 extern char *list_to_text(struct list *h);
82
83 extern struct map* map(struct map* map, char *name, int nc, char *value, int vc);
84 extern char *lookup(struct map *list, char *name);
85 extern void free_map(struct map *list);
86
87 /* Revision control strings from this header and associated .c file */
88 extern const char list_rcs[];
89 extern const char list_h_rcs[];
90
91 #ifdef __cplusplus
92 } /* extern "C" */
93 #endif
94
95 #endif /* ndef _LIST_H */
96
97 /*
98   Local Variables:
99   tab-width: 3
100   end:
101 */