| 71 | } |
| 72 | |
| 73 | static void make_obj4(int pretty) |
| 74 | { |
| 75 | jw_object_begin(&obj4, pretty); |
| 76 | { |
| 77 | jw_object_true(&obj4, "t"); |
| 78 | jw_object_false(&obj4, "f"); |
| 79 | jw_object_null(&obj4, "n"); |
| 80 | } |
| 81 | jw_end(&obj4); |
| 82 | } |
| 83 | |
| 84 | static void make_obj5(int pretty) |
| 85 | { |
nothing calls this directly
no test coverage detected