From f5c0db55ac5cf62fa6a4ec8a7ec88760b4a8d489 Mon Sep 17 00:00:00 2001 From: Alexander Vdolainen Date: Tue, 12 Nov 2019 14:17:16 +0200 Subject: [PATCH] minor comments; --- include/sexpr/sexp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sexpr/sexp.h b/include/sexpr/sexp.h index 2359af6..7f6a0fc 100644 --- a/include/sexpr/sexp.h +++ b/include/sexpr/sexp.h @@ -569,11 +569,11 @@ typedef struct sexp_iowrap { /* TODO: doxygen? more doxygen */ typedef struct sexp_cstrwrap { - pcont_t *cc; - const char *seval; + pcont_t *cc; /* continuation used to parse */ + const char *seval; /* pointer used to the original piece */ size_t rl, cnt; size_t sln; - char buf[CSTRBUFSIZ]; + char buf[CSTRBUFSIZ]; /* internal buffer */ } sexp_cstrwrap_t; /*========*/