mirror of
https://gitlab.com/80486DX2-66/gists
synced 2025-05-31 08:31:41 +05:30
C: categorize files, update .gitignore
This commit is contained in:
18
c-programming/io/pure_getline.h
Normal file
18
c-programming/io/pure_getline.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* 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 */
|
||||
Reference in New Issue
Block a user