aboutsummaryrefslogtreecommitdiff
path: root/src/base/io/readline.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
commit12e09f9f85ac48ff891adf92f3b2c9a5fea27273 (patch)
tree60051793885e9978dadf6672ef85cdda216676a2 /src/base/io/readline.c
parentb80a3d28ce42be4fdec451f74620b10ee75219dc (diff)
Chore(REMOVE): finished deprecation of old io functions.
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
Diffstat (limited to 'src/base/io/readline.c')
-rw-r--r--src/base/io/readline.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/base/io/readline.c b/src/base/io/readline.c
new file mode 100644
index 0000000..2be19db
--- /dev/null
+++ b/src/base/io/readline.c
@@ -0,0 +1,11 @@
+#include "internal.h"
+
+void *
+io·readline(io·Header *io, int null)
+{
+ char *start = io·readuntil(io, '\n');
+ if(null && start)
+ start[io->nread-1] = 0;
+
+ return start;
+}