test/testfile.c

Mon, 27 Jul 2020 17:23:53 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 27 Jul 2020 17:23:53 +0200
changeset 62
7f5f9f43d0c0
parent 57
68018eac46c3
child 66
be2084398c37
permissions
-rw-r--r--

fixes duplicate line in help text

/*
 * Many Files have license headers.
 */
// And add other stuff below.


int main(int argc, char* argv) { // comments behind code don't matter
    
    int zero /* in block comments we are genius enough to
              * detect, if there is still some code in the line
              */ = 0;
    
    /* otherwise the whole comment is
     * not counted*/   
    
    // this holds also for this empty line
    
    return zero;
}

/* rare case, but must also work: last line is a comment */

mercurial