| 142 | } |
| 143 | |
| 144 | static void make_arr2(int pretty) |
| 145 | { |
| 146 | jw_array_begin(&arr2, pretty); |
| 147 | { |
| 148 | jw_array_intmax(&arr2, -1); |
| 149 | jw_array_intmax(&arr2, 0x7fffffff); |
| 150 | jw_array_intmax(&arr2, 0); |
| 151 | } |
| 152 | jw_end(&arr2); |
| 153 | } |
| 154 | |
| 155 | static void make_arr3(int pretty) |
| 156 | { |
nothing calls this directly
no test coverage detected