| 49 | } |
| 50 | |
| 51 | static void make_obj2(int pretty) |
| 52 | { |
| 53 | jw_object_begin(&obj2, pretty); |
| 54 | { |
| 55 | jw_object_intmax(&obj2, "a", -1); |
| 56 | jw_object_intmax(&obj2, "b", 0x7fffffff); |
| 57 | jw_object_intmax(&obj2, "c", 0); |
| 58 | } |
| 59 | jw_end(&obj2); |
| 60 | } |
| 61 | |
| 62 | static void make_obj3(int pretty) |
| 63 | { |
nothing calls this directly
no test coverage detected