1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Add a --unbuffered option. Closes #206

This commit is contained in:
Stephen Dolan
2013-11-08 12:19:41 +00:00
parent d235f32bc9
commit 6a401c8262
4 changed files with 14 additions and 1 deletions

2
jv.h
View File

@@ -110,7 +110,7 @@ jv jv_object_iter_value(jv, int);
int jv_get_refcnt(jv);
enum { JV_PRINT_PRETTY = 1, JV_PRINT_ASCII = 2, JV_PRINT_COLOUR = 4, JV_PRINT_SORTED = 8 };
enum { JV_PRINT_PRETTY = 1, JV_PRINT_ASCII = 2, JV_PRINT_COLOUR = 4, JV_PRINT_SORTED = 8, JV_PRINT_UNBUFFERED = 16 };
void jv_dump(jv, int flags);
jv jv_dump_string(jv, int flags);