]> andersk Git - splint.git/blobdiff - src/Headers/cstringSList.h
*** empty log message ***
[splint.git] / src / Headers / cstringSList.h
index dbf4e0b4bbdb7a7c139158f40d68ba5736a7b843..c8f75a2b5bc23a9e7426d58d43c689602f4725b2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
+** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
 ** See ../LICENSE for license information.
 **
 */
@@ -8,23 +8,23 @@
 
 typedef /*@observer@*/ cstring ob_cstring;
 
-abst_typedef /*@null@*/ struct s_cstringSList
+struct s_cstringSList
 {
   int      nelements;
   int      nspace;
   /*@reldef@*/ /*@relnull@*/ ob_cstring *elements;
-} *cstringSList ;
+} ;
 
 /*@constant null cstringSList cstringSList_undefined;@*/
 # define cstringSList_undefined ((cstringSList) NULL)
 
-extern /*@falsenull@*/ bool cstringSList_isDefined (cstringSList p_s) /*@*/ ;
+extern /*@falsewhennull@*/ bool cstringSList_isDefined (cstringSList p_s) /*@*/ ;
 # define cstringSList_isDefined(s)   ((s) != cstringSList_undefined)
 
 extern int cstringSList_size (/*@sef@*/ cstringSList) /*@*/ ;
 # define cstringSList_size(s) (cstringSList_isDefined (s) ? (s)->nelements : 0)
 
-extern /*@falsenull@*/ bool cstringSList_empty (/*@sef@*/ cstringSList) /*@*/ ;
+extern /*@falsewhennull@*/ bool cstringSList_empty (/*@sef@*/ cstringSList) /*@*/ ;
 # define cstringSList_empty(s) (cstringSList_size(s) == 0)
 
 extern /*@unused@*/ cstring cstringSList_unparseSep (cstringSList p_s, cstring p_sep) /*@*/ ;
@@ -42,10 +42,10 @@ extern void cstringSList_alphabetize (cstringSList p_s);
 extern /*@observer@*/ cstring cstringSList_get (cstringSList p_s, int p_index) /*@*/ ;
 
 extern /*@only@*/ cstring cstringSList_unparseAbbrev (cstringSList p_s) /*@*/ ;
-extern /*@unused@*/ /*@only@*/ cstring cstringSList_unparse (cstringSList p_s) ;
+extern /*@unused@*/ /*@only@*/ cstring cstringSList_unparse (cstringSList p_s) /*@*/ ;
 extern void cstringSList_free (/*@only@*/ cstringSList p_s) ;
 
-extern void cstringSList_printSpaced (cstringSList p_s, int p_indent, int p_gap, int p_linelen);
+extern void cstringSList_printSpaced (cstringSList p_s, size_t p_indent, size_t p_gap, int p_linelen);
 
 /*@constant int cstringSListBASESIZE;@*/
 # define cstringSListBASESIZE MIDBASESIZE
This page took 0.03335 seconds and 4 git commands to generate.