mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-18 01:40:06 +02:00
11 lines
200 B
C
11 lines
200 B
C
#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
|