aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--booki.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/booki.c b/booki.c
index eeba4ba..6af0e2c 100644
--- a/booki.c
+++ b/booki.c
@@ -115,6 +115,9 @@ struct es parse_string(char* current_pos, char** new_pos) {
output.len = current_pos - value;
output.ptr = value;
+ // go past the quote
+ current_pos++;
+
// update position
*new_pos = current_pos;