Example #1
0
static pb_pr_show_t get_show_function(const ProtobufCFieldDescriptor *fd, pb_pr_ctl_t *ctl)
{
	if (pb_field_show_pretty(fd, ctl))
		return pb_show_pretty;
	return get_pb_show_function(fd->type, fd->label);
}
Example #2
0
static pb_pr_show_t get_show_function(int type, pb_pr_ctl_t *ctl)
{
	if (pb_field_show_pretty(ctl))
		return pb_show_pretty;
	return get_pb_show_function(type);
}