summaryrefslogtreecommitdiffstats
path: root/c/jv.c
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2012-09-17 20:08:55 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2012-09-17 20:11:12 +0100
commit9c15ad20218cdc03fb825773d6ea40b04c756471 (patch)
treea21ad947c2701e5ec007d435984daac7f964e9b3 /c/jv.c
parent84ea129f26e46a0e38dd630f6d02cad41b983808 (diff)
Support rendering a JSON value to a string buffer.
Diffstat (limited to 'c/jv.c')
-rw-r--r--c/jv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/c/jv.c b/c/jv.c
index 595484e7..51070636 100644
--- a/c/jv.c
+++ b/c/jv.c
@@ -544,7 +544,6 @@ jv jv_string_append_str(jv a, const char* str) {
return jv_string_append_buf(a, str, strlen(str));
}
-
jv jv_string_fmt(const char* fmt, ...) {
int size = 1024;
while (1) {