#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <sys/types.h>#include <sys/stat.h>#include <errno.h>#include <string.h>#include "strlib.h"#include "common.h"#include "InfoStream.h"#include "parm.h"Go to the source code of this file.
Functions | |
| int | readtoeoln (FILE *f) |
Variables | |
| int | debug = 0 |
|
|
Definition at line 51 of file parm.C. 00051 {
00052 char c;
00053
00054 /* skip to eoln */
00055 while((c = getc(f)) != '\n') {
00056 if (c == EOF)
00057 return -1;
00058 }
00059
00060 return 0;
00061 }
|
|
|
Definition at line 36 of file parm.C. Referenced by parm::readparm(). |
1.3.9.1