Another batch..
This commit is contained in:
committed by
Manoël Trapier
parent
2bbd5a38de
commit
20d58dea19
@@ -12,14 +12,12 @@
|
||||
|
||||
extern int InputLevel;
|
||||
|
||||
int
|
||||
skipspaces(ch, skipnl)
|
||||
register int ch;
|
||||
int skipspaces(int ch, int skipnl)
|
||||
{
|
||||
/* skipspaces() skips any white space and returns the first
|
||||
non-space character.
|
||||
*/
|
||||
register int nlseen = 0;
|
||||
int nlseen = 0;
|
||||
|
||||
for (;;) {
|
||||
while (class(ch) == STSKIP)
|
||||
@@ -56,11 +54,11 @@ skipspaces(ch, skipnl)
|
||||
}
|
||||
}
|
||||
|
||||
SkipToNewLine()
|
||||
int SkipToNewLine()
|
||||
{
|
||||
register int ch;
|
||||
register int garbage = 0;
|
||||
register int delim = 0;
|
||||
int ch;
|
||||
int garbage = 0;
|
||||
int delim = 0;
|
||||
|
||||
while ((ch = GetChar()) != '\n') {
|
||||
if (delim) {
|
||||
|
||||
Reference in New Issue
Block a user