1
0
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:
2024-02-20 19:36:12 +03:00
parent 73257b0c55
commit eb34ee33b3
12 changed files with 36 additions and 36 deletions

View 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 */