Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members

PDB.C File Reference

#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)


Define Documentation

#define LINESIZE   100
 

Definition at line 612 of file PDB.C.


Function Documentation

int readtoeoln FILE *  f  )  [static]
 

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 }  


Generated on Fri May 25 04:07:18 2012 for NAMD by  doxygen 1.3.9.1