mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-10 06:42:02 +05:30
19 lines
300 B
C
19 lines
300 B
C
|
/*
|
||
|
* pure_getline.h
|
||
|
*
|
||
|
* Author: Intel A80486DX2-66
|
||
|
* License: Creative Commons Zero 1.0 Universal
|
||
|
*/
|
||
|
|
||
|
#include <errno.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#ifndef _PURE_GETLINE_H
|
||
|
#define _PURE_GETLINE_H
|
||
|
|
||
|
bool pure_getline(char** output);
|
||
|
|
||
|
#endif /* _PURE_GETLINE_H */
|