aboutsummaryrefslogtreecommitdiff
path: root/sys/base/bufio/refill.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-11-11 16:31:58 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-11-11 16:31:58 -0800
commit9695ea005d4af93dcd60f74f10fd3c54499a182f (patch)
tree3e1a9abb9456ba07c0c97cd3d691f6a2df115791 /sys/base/bufio/refill.h
parentc65794b50b1bc729e7a4e940b76a973afa3030b9 (diff)
chore: split up base library into individual files for smaller binaries
Diffstat (limited to 'sys/base/bufio/refill.h')
-rw-r--r--sys/base/bufio/refill.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/sys/base/bufio/refill.h b/sys/base/bufio/refill.h
new file mode 100644
index 0000000..41e357e
--- /dev/null
+++ b/sys/base/bufio/refill.h
@@ -0,0 +1,28 @@
+int
+refill(io·Buffer *buf)
+{
+ int n;
+
+ if(buf->state & bufio·end)
+ return bufio·err;
+
+ memcpy(buf->buf, buf->pos - bufio·ungets, bufio·ungets);
+
+ n = buf->rdr.read(buf->h, 1, buf->size, buf->beg);
+ if(n < 0)
+ return bufio·err;
+ if(n == 0){
+ buf->state |= bufio·end;
+ return 0;
+ }
+
+ buf->pos = buf->beg;
+ buf->end = buf->pos + n;
+
+ // TEST: put a physical EOF byte at the end
+ // this would allow for an unget operation
+ if(n < buf->size)
+ *buf->end++ = EOF;
+
+ return n;
+}