]> granicus.if.org Git - graphviz/commitdiff
IntStack: remove commented out code
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 17 Sep 2021 00:32:59 +0000 (17:32 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 20 Sep 2021 00:24:30 +0000 (17:24 -0700)
lib/sparse/IntStack.c

index 65a69722b66c1b94dc2e6f503ae8fa06d92dc0f3..9fc392c51787120b4864cf8ca2727e1202ca429a 100644 (file)
@@ -62,31 +62,3 @@ void IntStack_print(IntStack s){
   for (i = 0; i <= s->last; i++) fprintf(stderr,"%d,",s->stack[i]);
   fprintf(stderr,"\n");
 }
-
-/*
-main(){
-
-  IntStack s;
-  int i, len = 1, pos, flag;
-
-  for (;;){
-    s = IntStack_new();
-    fprintf(stderr,"=============== stack with %d elements ============\n",len);
-    for (i = 0; i < len; i++){
-      pos = IntStack_push(s, i);
-      if (pos < 0){
-       fprintf(stderr," fail to push element %d, quit\n", i);
-       exit(1);
-      }
-    }    
-    for (i = 0; i < len+1; i++){
-      IntStack_pop(s, &flag);
-      if (flag) {
-       fprintf(stderr, "no more element\n");
-      }
-    }
-    IntStack_delete(s);
-    len *= 2;
-  }
-}
-*/