]> andersk Git - splint.git/blame_incremental - src/Headers/cstringList.h
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / Headers / cstringList.h
... / ...
CommitLineData
1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
3** See ../LICENSE for license information.
4**
5*/
6# ifndef cstringList_H
7# define cstringList_H
8
9abst_typedef /*@null@*/ struct s_cstringList
10{
11 int nelements;
12 int nspace;
13 /*@reldef@*/ /*@relnull@*/ o_cstring *elements;
14} *cstringList ;
15
16/*@constant null cstringList cstringList_undefined;@*/
17# define cstringList_undefined ((cstringList) NULL)
18
19extern /*@falsewhennull@*/ bool cstringList_isDefined (cstringList p_s) /*@*/ ;
20# define cstringList_isDefined(s) ((s) != cstringList_undefined)
21
22extern int cstringList_size (/*@sef@*/ cstringList) /*@*/ ;
23# define cstringList_size(s) (cstringList_isDefined (s) ? (s)->nelements : 0)
24
25extern /*@unused@*/ /*@falsewhennull@*/ bool cstringList_empty (/*@sef@*/ cstringList) /*@*/ ;
26# define cstringList_empty(s) (cstringList_size(s) == 0)
27
28extern cstring cstringList_unparseSep (cstringList p_s, cstring p_sep) /*@*/ ;
29
30extern /*@exposed@*/ /*@null@*/ ob_cstring *cstringList_getElements (cstringList) /*@*/ ;
31
32extern /*@unused@*/ /*@only@*/ cstringList cstringList_new (void) /*@*/ ;
33
34extern /*@only@*/ cstringList cstringList_single (/*@keep@*/ cstring p_el) /*@*/ ;
35
36extern cstringList
37 cstringList_add (/*@returned@*/ cstringList p_s, /*@keep@*/ cstring p_el)
38 /*@modifies p_s@*/ ;
39
40extern /*@only@*/ cstringList
41 cstringList_prepend (/*@only@*/ /*@returned@*/ cstringList p_s,
42 /*@keep@*/ cstring p_el)
43 /*@modifies p_s@*/ ;
44
45extern bool cstringList_contains (cstringList p_s, cstring p_key) /*@*/ ;
46extern int cstringList_getIndex (cstringList p_s, cstring p_key) /*@*/ ;
47extern /*@observer@*/ cstring cstringList_get (cstringList p_s, int p_index) /*@*/ ;
48
49extern /*@unused@*/ void cstringList_alphabetize (cstringList p_s);
50extern /*@unused@*/ /*@only@*/ cstring cstringList_unparseAbbrev (cstringList p_s) /*@*/ ;
51extern /*@unused@*/ /*@only@*/ cstring cstringList_unparse (cstringList p_s) ;
52extern void cstringList_free (/*@only@*/ cstringList p_s) ;
53
54extern /*@unused@*/ void cstringList_printSpaced (cstringList p_s, size_t p_indent, size_t p_gap, int p_linelen);
55
56extern /*@only@*/ cstringList cstringList_copy (cstringList p_s) /*@*/ ;
57
58/*@constant int cstringListBASESIZE;@*/
59# define cstringListBASESIZE MIDBASESIZE
60
61/*@iter cstringList_elements (sef cstringList x, yield exposed cstring el); @*/
62# define cstringList_elements(x, m_el) \
63 { if (cstringList_isDefined (x)) { \
64 int m_ind; cstring *m_elements = &((x)->elements[0]); \
65 for (m_ind = 0 ; m_ind < (x)->nelements; m_ind++) \
66 { cstring m_el = *(m_elements++);
67
68# define end_cstringList_elements }}}
69
70# else
71# error "Multiple include"
72# endif
73
74
75
76
This page took 0.150215 seconds and 5 git commands to generate.