mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
8 lines
221 B
C
8 lines
221 B
C
|
#ifndef GETLINE_H
|
||
|
#define GETLINE_H
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
ssize_t getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp);
|
||
|
ssize_t getline(char **buf, size_t *bufsiz, FILE *fp);
|
||
|
#endif // GETLINE_H
|