ack/lang/cem/cemcom.ansi/skip.c

105 lines
1.7 KiB
C
Raw Normal View History

1989-02-07 11:04:05 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-27 08:03:14 +00:00
/* $Id$ */
1989-02-07 11:04:05 +00:00
/* PREPROCESSOR: INPUT SKIP FUNCTIONS */
#include "parameters.h"
1989-02-07 11:04:05 +00:00
#include "arith.h"
#include "LLlex.h"
#include "class.h"
#include "input.h"
#ifndef NOPP
extern int InputLevel;
1989-02-07 11:04:05 +00:00
int
skipspaces(ch, skipnl)
register int ch;
{
/* skipspaces() skips any white space and returns the first
non-space character.
*/
register int nlseen = 0;
1989-02-07 11:04:05 +00:00
for (;;) {
while (class(ch) == STSKIP)
ch = GetChar();
if (skipnl && class(ch) == STNL) {
ch = GetChar();
LineNumber++;
nlseen++;
continue;
}
if (ch == TOKSEP && InputLevel) {
ch = GetChar();
1989-02-07 11:04:05 +00:00
continue;
}
/* \\\n are handled by trigraph */
if (ch == '/') {
ch = GetChar();
if (ch == '*' && !InputLevel) {
1989-02-07 11:04:05 +00:00
skipcomment();
ch = GetChar();
}
else {
UnGetChar();
return '/';
}
}
else if (nlseen && ch == '#') {
domacro();
ch = GetChar();
} else
1989-02-07 11:04:05 +00:00
return ch;
}
}
#endif /* NOPP */
1989-02-07 11:04:05 +00:00
1989-10-18 13:12:31 +00:00
SkipToNewLine()
1989-02-07 11:04:05 +00:00
{
register int ch;
1989-10-18 13:12:31 +00:00
register int garbage = 0;
#ifndef NOPP
register int delim = 0;
#endif
1989-02-07 11:04:05 +00:00
while ((ch = GetChar()) != '\n') {
#ifndef NOPP
if (delim) {
if (ch == '\\') {
if (GetChar() == '\n') break;
} else if (ch == delim) {
delim = 0;
}
continue;
}
else if (ch == '\'' || ch == '\"') {
delim = ch;
garbage = 1;
} else if (ch == '/') {
if (GetChar() == '*'
&& !InputLevel
) {
1989-02-07 11:04:05 +00:00
skipcomment();
continue;
}
else UnGetChar();
1989-02-07 11:04:05 +00:00
}
else if (ch == TOKSEP && InputLevel) {
continue;
}
#endif
1989-10-18 13:12:31 +00:00
if (!is_wsp(ch))
garbage = 1;
1989-02-07 11:04:05 +00:00
}
#ifndef NOPP
if (delim) strict("unclosed opening %c", delim);
#endif
1989-02-07 11:04:05 +00:00
++LineNumber;
1989-10-18 13:12:31 +00:00
return garbage;
1989-02-07 11:04:05 +00:00
}