X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/885824d34f6f6626fde2fb041801408cbaf1f6f1..ed62d3fbeda6bb085991cdd683ceacfc57f7afbe:/src/mapping.c?ds=inline diff --git a/src/mapping.c b/src/mapping.c index 65589c3..ef35daa 100644 --- a/src/mapping.c +++ b/src/mapping.c @@ -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