]> andersk Git - splint.git/blobdiff - src/stateClause.c
Fixed some splintme errors from the previous code change.
[splint.git] / src / stateClause.c
index 26009b4059918f8a28d9feb9993e057d4d7e2e33..249e34e4f2907066af0b2231692314cb813c4368 100644 (file)
@@ -43,6 +43,25 @@ stateClause_createRaw (stateConstraint st, stateClauseKind sk, /*@only@*/ sRefSe
   return ret;
 }
 
+/*drl added 3/7/2003*/
+bool stateClause_hasEmptyReferences (stateClause s)
+{
+  if (sRefSet_isUndefined(s->refs) )
+    return TRUE;
+    else
+    return FALSE;
+}
+
+bool stateClause_isMetaState (stateClause s)
+{
+
+  if (qual_isMetaState (s->squal) )
+    return TRUE;
+  else
+    return FALSE;
+}
+/*end drl added*/
+
 stateClause 
 stateClause_create (lltok tok, qual q, sRefSet s) 
 {
This page took 0.03228 seconds and 4 git commands to generate.