aboutsummaryrefslogtreecommitdiff
path: root/buf.c
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-03-30 23:53:26 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-03-30 23:53:26 -0400
commitf995a0a66e665592b18cb053ee727093f0f5617b (patch)
tree5249c3ad81682721f493d3006d0f94093896b175 /buf.c
parentd87022dad4efdf4395c15b4de63a894b358bcf7c (diff)
added peekchrbuf to buf
Diffstat (limited to 'buf.c')
-rw-r--r--buf.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/buf.c b/buf.c
index a219773..7e270c3 100644
--- a/buf.c
+++ b/buf.c
@@ -110,3 +110,10 @@ char* peekstrbuf(buf* buffer, size_t loc, size_t len){
}
return str;
}
+char peekchrbuf(buf* buffer, size_t loc){
+ buf_node* start;
+ loc += buffer->pop;
+ for (start = buffer->tail; loc>buffer->cap; loc -= buffer->cap)
+ start = start->next;
+ return start->text[loc];
+}