Skip to content

Commit

Permalink
Updated YAJL
Browse files Browse the repository at this point in the history
  • Loading branch information
mirek committed May 8, 2011
1 parent 61685f0 commit d8704a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YAJL/yajl
Submodule yajl updated 90 files
+22 −34 CMakeLists.txt
+13 −29 COPYING
+57 −10 ChangeLog
+9 −3 README
+14 −29 configure
+23 −0 example/CMakeLists.txt
+7 −0 example/README.md
+69 −0 example/parse_config.c
+101 −0 example/sample.config
+23 −0 perf/CMakeLists.txt
+1,418 −0 perf/documents.c
+28 −0 perf/documents.h
+134 −0 perf/perftest.c
+13 −29 reformatter/CMakeLists.txt
+62 −87 reformatter/json_reformat.c
+19 −31 src/CMakeLists.txt
+2 −2 src/YAJL.dxy
+19 −33 src/api/yajl_common.h
+71 −73 src/api/yajl_gen.h
+107 −74 src/api/yajl_parse.h
+185 −0 src/api/yajl_tree.h
+14 −177 src/yajl
+74 −58 src/yajl.c
+9 −0 src/yajl.pc.cmake
+16 −32 src/yajl_alloc.c
+14 −30 src/yajl_alloc.h
+21 −37 src/yajl_buf.c
+17 −33 src/yajl_buf.h
+20 −36 src/yajl_bytestack.h
+81 −49 src/yajl_encode.c
+22 −38 src/yajl_encode.h
+95 −91 src/yajl_gen.c
+102 −76 src/yajl_lex.c
+20 −36 src/yajl_lex.h
+141 −97 src/yajl_parser.c
+31 −35 src/yajl_parser.h
+501 −0 src/yajl_tree.c
+13 −29 test/CMakeLists.txt
+0 −0 test/cases/ac_difficult_json_c_test_case_with_comments.json
+0 −0 test/cases/ac_difficult_json_c_test_case_with_comments.json.gold
+0 −0 test/cases/ac_simple_with_comments.json
+9 −0 test/cases/ac_simple_with_comments.json.gold
+0 −0 test/cases/ag_false_then_garbage.json
+0 −0 test/cases/ag_false_then_garbage.json.gold
+0 −0 test/cases/ag_null_then_garbage.json
+0 −0 test/cases/ag_null_then_garbage.json.gold
+0 −0 test/cases/ag_true_then_garbage.json
+0 −0 test/cases/ag_true_then_garbage.json.gold
+1 −0 test/cases/am_eof.json
+4 −0 test/cases/am_eof.json.gold
+1 −0 test/cases/am_integers.json
+3 −0 test/cases/am_integers.json.gold
+3 −0 test/cases/am_multiple.json
+5 −0 test/cases/am_multiple.json.gold
+7 −0 test/cases/am_stuff.json
+14 −0 test/cases/am_stuff.json.gold
+0 −0 test/cases/ap_array_open.json
+0 −0 test/cases/ap_array_open.json.gold
+1 −0 test/cases/ap_eof_str.json
+1 −0 test/cases/ap_eof_str.json.gold
+0 −0 test/cases/ap_map_open.json
+0 −0 test/cases/ap_map_open.json.gold
+1 −0 test/cases/ap_partial_ok.json
+4 −0 test/cases/ap_partial_ok.json.gold
+1 −0 test/cases/bignums.json
+5 −0 test/cases/bignums.json.gold
+0 −5 test/cases/dc_simple_with_comments.json.gold
+1 −0 test/cases/fg_false_then_garbage.json
+3 −0 test/cases/fg_false_then_garbage.json.gold
+1 −0 test/cases/fg_issue_7.json
+3 −0 test/cases/fg_issue_7.json.gold
+1 −0 test/cases/fg_null_then_garbage.json
+3 −0 test/cases/fg_null_then_garbage.json.gold
+1 −0 test/cases/fg_true_then_garbage.json
+3 −0 test/cases/fg_true_then_garbage.json.gold
+1 −0 test/cases/high_overflow.json
+2 −0 test/cases/high_overflow.json.gold
+1 −0 test/cases/low_overflow.json
+2 −0 test/cases/low_overflow.json.gold
+3 −0 test/cases/multiple.json
+4 −0 test/cases/multiple.json.gold
+1 −0 test/cases/np_partial_bad.json
+5 −0 test/cases/np_partial_bad.json.gold
+1 −5 test/cases/simple_with_comments.json.gold
+1 −0 test/cases/zerobyte.json
+ test/cases/zerobyte.json.gold
+43 −21 test/run_tests.sh
+67 −77 test/yajl_test.c
+13 −29 verify/CMakeLists.txt
+45 −64 verify/json_verify.c

0 comments on commit d8704a2

Please sign in to comment.