Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
[egate.git] / ccl / cclsh.c
index 1e7e976..f7f3a0e 100644 (file)
@@ -2,7 +2,19 @@
  * Europagate 1995
  *
  * $Log: cclsh.c,v $
- * Revision 1.6  1995/02/14 19:55:13  adam
+ * Revision 1.10  1995/05/11 14:03:57  adam
+ * Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
+ * New variable ccl_case_sensitive, which controls whether reserved
+ * words and field names are case sensitive or not.
+ *
+ * Revision 1.9  1995/02/23  08:32:00  adam
+ * Changed header.
+ *
+ * Revision 1.7  1995/02/15  17:42:16  adam
+ * Minor changes of the api of this module. FILE* argument added
+ * to ccl_pr_tree.
+ *
+ * Revision 1.6  1995/02/14  19:55:13  adam
  * Header files ccl.h/cclp.h are gone! They have been merged an
  * moved to ../include/ccl.h.
  * Node kind(s) in ccl_rpn_node have changed names.
@@ -47,6 +59,9 @@ int main (int argc, char **argv)
         {
             switch (argv[0][1])
             {
+            case 'c':
+                ccl_case_sensitive = 0;
+                break;
             case 'd':
                 debug = 1;
                 break;
@@ -103,7 +118,7 @@ int main (int argc, char **argv)
         else
         {
             assert (rpn);
-            ccl_pr_tree (rpn);
+            ccl_pr_tree (rpn, stdout);
             putchar ('\n');
         }
     }