cctools

get_line.h

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 #define LARGE_LINE_MAX 1048576
00012 
00017 char *get_line(FILE * fp);
00018 
00019 #endif