GLYLIB  0.3.0b
read_neek.c
Go to the documentation of this file.
00001 /**************************  read_neek() *******************************/
00002 /* This exits if there is a read problem 
00003    Author: Michael Tessier (slight mods by BLFoley)*/
00004 //#include <load_pdb.h>
00005 //#include "../inc/load_pdb.h"
00006 #include "../inc/mylib.h"
00007 void read_neek(const char *NEEK, int x, int y){
00008 printf("Unexpected %s when reading line %d at field f[%d]\n",
00009         NEEK,x,y);
00010 printf("Exiting.\n");
00011 exit(1);
00012 return;
00013 }
00014 /**************************  read_fneek() *******************************/
00015 /* This exits if there is a read problem and gives more inf
00016    Author: Michael Tessier plus Lachele Foley */
00017 //#include "../inc/mylib.h"
00018 void read_fneek(const char *NEEK, int x, int y, const char *FILENAME){
00019 printf("Unexpected: %s \n\treading line %d at field %d\n\tfile:%s\n",
00020         NEEK,x,y,FILENAME);
00021 printf("Exiting.\n");
00022 exit(1);
00023 return;
00024 }
 All Classes Files Functions Variables Typedefs Defines