mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 01:25:05 +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
|