blob: 39ccd14b3d3120f9f9e60e32f76626252a57ad2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef IO_H_INCLUDED
#define IO_H_INCLUDED
#include <stdio.h>
void
pm_freadline(FILE * const fileP,
const char ** const lineP,
const char ** const errorP);
#endif
|