Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// Copyright (c) 1993-1999 Microsoft Corporation
#include "y2.h"
int skipcom( void ) { /* skip over comments */ register c, i; /* i is the number of lines skipped */ i=0; /*01*/ /* skipcom is called after reading a / */
c = unix_getc(finput); if (c == '/') { while ((c = unix_getc(finput)) != '\n') ; return ++i; } else { if( c != '*' ) error( "illegal comment" ); c = unix_getc(finput); while( c != EOF ) { if (c == '*') { if ((c = unix_getc(finput)) != '/') { continue; } else { return i; } } if (c == '\n') { i++; } c = unix_getc(finput); } error( "EOF inside comment" ); return i; /* NOTREACHED */ } }
|