]> andersk Git - splint.git/blobdiff - src/qualList.c
Updated html and word versions of the manual
[splint.git] / src / qualList.c
index 8b51286e179f3ef49236bb4216348dd03a5d4009..f7039aff6a842384c8fb15b3f5585abb8f9a51e2 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Splint - annotation-assisted static program checker
-** Copyright (C) 1994-2002 University of Virginia,
+** Copyright (C) 1994-2003 University of Virginia,
 **         Massachusetts Institute of Technology
 **
 ** This program is free software; you can redistribute it and/or modify it
@@ -17,8 +17,8 @@
 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 ** MA 02111-1307, USA.
 **
-** For information on splint: splint@cs.virginia.edu
-** To report a bug: splint-bug@cs.virginia.edu
+** For information on splint: info@splint.org
+** To report a bug: splint-bug@splint.org
 ** For more information: http://www.splint.org
 */
 /*
@@ -74,6 +74,13 @@ qualList_grow (/*@notnull@*/ qualList s)
   sfree (oldelements);
 }
 
+qualList qualList_single (qual el)
+{
+  /*@-unqualifiedtrans@*/ /* must be only */
+  return (qualList_add (qualList_undefined, el));
+  /*@=unqualifiedtrans@*/
+}
+
 qualList qualList_add (qualList s, qual el)
 {
   if (qualList_isUndefined (s))
@@ -101,7 +108,6 @@ qualList qualList_appendList (qualList s, qualList t)
   return s;
 }
 
-# ifndef NOLCL
 qualList qualList_copy (qualList s)
 {
   qualList t = qualList_new ();
@@ -113,7 +119,6 @@ qualList qualList_copy (qualList s)
 
   return t;
 }
-# endif
 
 /*@only@*/ cstring
 qualList_unparse (qualList s)
@@ -137,7 +142,6 @@ qualList_unparse (qualList s)
    return st;
 }
 
-# ifndef NOLCL
 /*@only@*/ cstring
 qualList_toCComments (qualList s)
 {
@@ -159,7 +163,6 @@ qualList_toCComments (qualList s)
 
    return st;
 }
-# endif
 
 bool
 qualList_hasAliasQualifier (qualList s)
This page took 0.682107 seconds and 4 git commands to generate.