Some consistency changes to library & headers flags.
[splint-patched.git] / src / mtDefaultsDeclList.c
blob228685e070ff242469f6063dffeca72c0bf6346a
1 /*
2 ** Splint - annotation-assisted static program checker
3 ** Copyright (C) 1994-2003 University of Virginia,
4 ** Massachusetts Institute of Technology
5 **
6 ** This program is free software; you can redistribute it and/or modify it
7 ** under the terms of the GNU General Public License as published by the
8 ** Free Software Foundation; either version 2 of the License, or (at your
9 ** option) any later version.
10 **
11 ** This program is distributed in the hope that it will be useful, but
12 ** WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ** General Public License for more details.
15 **
16 ** The GNU General Public License is available from http://www.gnu.org/ or
17 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 ** MA 02111-1307, USA.
20 ** For information on splint: info@splint.org
21 ** To report a bug: splint-bug@splint.org
22 ** For more information: http://www.splint.org
25 ** mtDefaultsDeclList.c
27 ** based on list_template.c
29 ** where T has T_equal (or change this) and T_unparse
32 # include "splintMacros.nf"
33 # include "basic.h"
35 mtDefaultsDeclList
36 mtDefaultsDeclList_new (void)
38 return mtDefaultsDeclList_undefined;
41 static /*@notnull@*/ mtDefaultsDeclList
42 mtDefaultsDeclList_newEmpty (void)
44 mtDefaultsDeclList s = (mtDefaultsDeclList) dmalloc (sizeof (*s));
46 s->nelements = 0;
47 s->nspace = mtDefaultsDeclListBASESIZE;
48 s->elements = (mtDefaultsDecl *) dmalloc (sizeof (*s->elements) * mtDefaultsDeclListBASESIZE);
50 return (s);
53 static void
54 mtDefaultsDeclList_grow (/*@notnull@*/ mtDefaultsDeclList s)
56 int i;
57 mtDefaultsDecl *newelements;
59 s->nspace += mtDefaultsDeclListBASESIZE;
61 newelements = (mtDefaultsDecl *) dmalloc (sizeof (*newelements) * (s->nelements + s->nspace));
63 if (newelements == (mtDefaultsDecl *) 0)
65 llfatalerror (cstring_makeLiteral ("mtDefaultsDeclList_grow: out of memory!"));
68 for (i = 0; i < s->nelements; i++)
70 newelements[i] = s->elements[i];
73 sfree (s->elements);
74 s->elements = newelements;
77 mtDefaultsDeclList mtDefaultsDeclList_single (/*@keep@*/ mtDefaultsDecl el)
79 mtDefaultsDeclList s = mtDefaultsDeclList_new ();
80 s = mtDefaultsDeclList_add (s, el);
81 return s;
84 mtDefaultsDeclList mtDefaultsDeclList_add (mtDefaultsDeclList s, /*@keep@*/ mtDefaultsDecl el)
86 if (!mtDefaultsDeclList_isDefined (s))
88 s = mtDefaultsDeclList_newEmpty ();
91 if (s->nspace <= 0)
93 mtDefaultsDeclList_grow (s);
96 s->nspace--;
97 s->elements[s->nelements] = el;
98 s->nelements++;
100 return s;
103 mtDefaultsDeclList mtDefaultsDeclList_prepend (mtDefaultsDeclList s, /*@keep@*/ mtDefaultsDecl el)
105 int i;
107 if (!mtDefaultsDeclList_isDefined (s))
109 return mtDefaultsDeclList_single (el);
112 if (s->nspace <= 0)
114 mtDefaultsDeclList_grow (s);
117 s->nspace--;
119 for (i = s->nelements; i > 0; i--)
121 s->elements[i] = s->elements [i - 1];
124 s->elements[0] = el;
125 s->nelements++;
127 return s;
130 cstring
131 mtDefaultsDeclList_unparse (mtDefaultsDeclList s)
133 return mtDefaultsDeclList_unparseSep (s, cstring_makeLiteralTemp (" "));
136 cstring
137 mtDefaultsDeclList_unparseSep (mtDefaultsDeclList s, cstring sep)
139 cstring st = cstring_undefined;
141 if (mtDefaultsDeclList_isDefined (s))
143 int i;
145 for (i = 0; i < s->nelements; i++)
147 if (i == 0)
149 st = mtDefaultsDecl_unparse (s->elements[i]);
151 else
152 st = message ("%q%s%q", st, sep, mtDefaultsDecl_unparse (s->elements[i]));
156 return st;
159 void
160 mtDefaultsDeclList_free (mtDefaultsDeclList s)
162 if (mtDefaultsDeclList_isDefined (s))
164 int i;
166 for (i = 0; i < s->nelements; i++) {
167 mtDefaultsDecl_free (s->elements[i]);
170 sfree (s->elements);
171 sfree (s);