1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-20 00:05:34 +05:30
gists/c-programming/io/pure_getline.h

19 lines
274 B
C

/*
* pure_getline.h
*
* Author: Intel A80486DX2-66
* License: Unlicense
*/
#ifndef _PURE_GETLINE_H
#define _PURE_GETLINE_H
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
bool pure_getline(char** output);
#endif /* _PURE_GETLINE_H */