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
Raw Normal View History

2024-01-29 01:17:01 +05:30
/*
* pure_getline.h
*
* Author: Intel A80486DX2-66
2024-04-26 01:46:39 +05:30
* License: Unlicense
2024-01-29 01:17:01 +05:30
*/
#ifndef _PURE_GETLINE_H
#define _PURE_GETLINE_H
2024-01-29 01:17:01 +05:30
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
bool pure_getline(char** output);
#endif /* _PURE_GETLINE_H */