]> andersk Git - splint.git/blobdiff - src/Headers/functionConstraint.h
Fixed declarations of inptr_t and uintptr_t.
[splint.git] / src / Headers / functionConstraint.h
index 83035c631e23a0759e7d15211cbc15cc77eb60b3..33370785fd0b87d6a803135e8256d28dff2f45b5 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.
 */
 /*
@@ -29,6 +29,12 @@ struct s_functionConstraint {
 extern /*@falsewhennull@*/ bool functionConstraint_isDefined (functionConstraint) /*@*/ ;
 # define functionConstraint_isDefined(p_info) ((p_info) != NULL)
 
+extern /*@falsewhennull@*/ bool functionConstraint_isBufferConstraint (/*@sef@*/ functionConstraint) /*@*/ ;
+# define functionConstraint_isBufferConstraint(p_con) (((p_con) != NULL) && ((p_con)->kind == FCT_BUFFER))
+
+extern void functionConstraint_addBufferConstraints (functionConstraint p_node, /*@only@*/ constraintList) 
+  /*@modifies p_node@*/ ;
+
 extern /*@nullwhentrue@*/ bool functionConstraint_isUndefined (functionConstraint) /*@*/ ;
 # define functionConstraint_isUndefined(p_info) ((p_info) == NULL)
 
This page took 0.032118 seconds and 4 git commands to generate.