Help for this page

Select Code to Download


  1. or download this
        pointer: a value that refers to another object
        non-null-pointer:  a pointer whose value is not zero
    ...
    
        boolean strcmp (nnsp a, nnsp b):  takes two non-null 
            string pointers and returns TRUE if the strings are equal
    
  2. or download this
        sp x, y;
        boolean b;
    
        b = strcmp (x,y);
    
  3. or download this
        create a data structure filled with default values 
            known to conform to the required assertions.
    ...
        }
        ##  at this point, we can assume that the structure conforms
        ##  to the assertions, whether the input was valid or not
    
  4. or download this
        %templates = (
            1 => "template one: data = #DATA#",
    ...
            $t =~ s/#DATA#/$d/;
            print $t, "\n";
        }