cctools
get_line.h
1/*
2Copyright (C) 2022 The University of Notre Dame
3Originally written by Kevin Partington (27 January 2009)
4This software is distributed under the GNU General Public License.
5See 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
19char *get_line(FILE * fp);
20
21#endif