test/testfile.c

Fri, 29 Sep 2023 20:07:48 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 29 Sep 2023 20:07:48 +0200
changeset 70
8de477fe19eb
parent 66
be2084398c37
permissions
-rw-r--r--

Added tag v1.4.1 for changeset 186e41b332d9

/*
 * 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