binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / arguments1.c
index ae32e11fd85a0f41caeb019c51adf89f48b26ace..552e983b69d7f084926917b1afd7f7f9c803392a 100644 (file)
@@ -1,17 +1,14 @@
 #include "cll1.h"
 
-//try to run: ./arguments1 -x xxx yyyy -c cccc
+/* try to run: ./arguments1 -x xxx yyyy -c cccc */
 
 program
 {
- Define_str(ptr);
- if_args then
+ if_args
  {
   for_args
   {
-   ptr=this_arg;
-   if (ptr[0]=='-') then
+   if this_arg[0] == '-')
    {
     printf("Command line switch: -%c ",ptr[1]);
     if (next_arg) then
This page took 0.103466 seconds and 4 git commands to generate.