예제 #1
0
/* Collections */
void jsonw_start_object(json_writer_t *self)
{
	jsonw_begin(self, '{');
}
예제 #2
0
void jsonw_start_array(json_writer_t *self)
{
	jsonw_begin(self, '[');
	if (self->pretty)
		putc(' ', self->out);
}
예제 #3
0
void jsonw_start_array(json_writer_t *self)
{
	jsonw_begin(self, '[');
}