]> andersk Git - splint.git/blobdiff - src/mapping.c
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / mapping.c
index 65589c36b48b7c13d1b71124842af68c89543c1b..ef35daaf66ec7b66f4a3f2c68a770578dcca4efe 100644 (file)
@@ -1,6 +1,6 @@
 /*
-** LCLint - annotation-assisted static program checker
-** Copyright (C) 1994-2000 University of Virginia,
+** Splint - annotation-assisted static program checker
+** 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,9 +17,9 @@
 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 ** MA 02111-1307, USA.
 **
-** For information on lclint: lclint-request@cs.virginia.edu
-** To report a bug: lclint-bug@cs.virginia.edu
-** For more information: http://lclint.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
 */
 /*
 ** mapping.c
@@ -31,8 +31,8 @@
 **         Massachusetts Institute of Technology
 */
 
-# include "lclintMacros.nf"
-# include "llbasic.h"
+# include "splintMacros.nf"
+# include "basic.h"
 
 /*@constant int MAPPING_SIZE; @*/
 # define MAPPING_SIZE 127
@@ -56,7 +56,7 @@ static void mappair_free (/*@null@*/ /*@only@*/ mappair *p)
     }
 }
 
-void mapping_free (/*@only@*/ mapping *m)
+void mapping_free (/*@only@*/ mapping m)
 {
   int i;
 
@@ -69,11 +69,11 @@ void mapping_free (/*@only@*/ mapping *m)
   sfree (m);
 }
 
-/*@only@*/ mapping *
+/*@only@*/ mapping
 mapping_create (void)
 {
   int i;
-  mapping *t = (mapping *) dmalloc (sizeof (*t));
+  mapping t = (mapping) dmalloc (sizeof (*t));
 
   t->buckets = (mappair **) dmalloc ((MAPPING_SIZE + 1) * sizeof (*t->buckets));
   t->count = 0;
@@ -87,7 +87,7 @@ mapping_create (void)
 }
 
 lsymbol
-mapping_find (mapping t, lsymbol domain)
+mapping_find (mapping t, lsymbol domain)
 {
   mappair *entry;
   unsigned int key;
@@ -104,7 +104,7 @@ mapping_find (mapping * t, lsymbol domain)
 }
 
 void
-mapping_bind (mapping *t, lsymbol domain, lsymbol range)
+mapping_bind (mapping t, lsymbol domain, lsymbol range)
 {
   /* add the binding (domain -> range) to t */
   /* can assume that the binding is a new one in m, so no need
This page took 0.284177 seconds and 4 git commands to generate.