#include <stdio.h>#include <stdlib.h>#include <strings.h>#include "common.h"#include "PDB.h"#include "SortableResizeArray.h"Go to the source code of this file.
Defines | |
| #define | LINESIZE 100 |
Functions | |
| int | readtoeoln (FILE *f) |
|
|
|
|
|
Definition at line 529 of file PDB.C. Referenced by PDB::PDB(), and parm::readparm(). 00529 {
00530 char c;
00531
00532 /* skip to eoln */
00533 while((c = getc(f)) != '\n') {
00534 if (c == EOF)
00535 return -1;
00536 }
00537
00538 return 0;
00539 }
|
1.3.9.1