blob: 01be0ddbb8bd1d69914eb91c8fa479219f9ef0f8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GETDELIM2_H_
# define GETDELIM2_H_ 1
# include <stddef.h>
# include <stdio.h>
int getdelim2 (char **lineptr, size_t *n, FILE *stream, int delim1, int delim2,
size_t offset);
#endif
|