blob: f21f8ce29f76bdbae91570cfdddf0abbf7dfcb1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MYGETLINE_H
#define MYGETLINE_H
//#include "config.h"
#if !HAVE_GETLINE
#include <stdio.h>
ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp);
#define getline(lineptr, n, stream) getdelim (lineptr, n, '\n', stream)
#endif
#endif // MYGETLINE_H
|