00001 /* 00002 Copyright (C) 2009- The University of Notre Dame 00003 Originally written by Kevin Partington (27 January 2009) 00004 This software is distributed under the GNU General Public License. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef __LINEREADER_H__ 00009 #define __LINEREADER_H__ 00010 00011 #include <stdio.h> 00012 00013 #define LARGE_LINE_MAX 1048576 00014 00019 char *get_line(FILE * fp); 00020 00021 #endif