1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-12 22:45:54 +05:30

freadln.c: add new TODOs

This commit is contained in:
Intel A80486DX2-66 2024-03-10 14:08:28 +03:00
parent c09c9481c9
commit 692eb05bf5
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -8,6 +8,10 @@
* License: Creative Commons Zero 1.0 Universal
*
* TODO: Figure out potential problems
* TODO: Add 'flushing' of STDIN (while there are characters, read them) before
* the input reading loop to avoid input queues
* TODO: Add the feature of reading from arbitrary file, then extract a macro:
* `#define finreadln(output, length_out) freadln(stdin, output, length_out)`
*/
#include "freadln.h"