cctools
get_line.h
1 /*
2 Copyright (C) 2009- The University of Notre Dame
3 Originally written by Kevin Partington (27 January 2009)
4 This software is distributed under the GNU General Public License.
5 See the file COPYING for details.
6 */
7 
8 #ifndef __LINEREADER_H__
9 #define __LINEREADER_H__
10 
11 #include <stdio.h>
12 
13 #define LARGE_LINE_MAX 1048576
14 
19 char *get_line(FILE * fp);
20 
21 #endif