1 void
wdns_print_rrset_array(FILE * fp,wdns_rrset_array_t * rr,unsigned sec)2 wdns_print_rrset_array(FILE *fp, wdns_rrset_array_t *rr, unsigned sec)
3 {
4 	char *s;
5 
6 	s = wdns_rrset_array_to_str(rr, sec);
7 	if (s == NULL)
8 		return;
9 	fputs(s, fp);
10 	my_free(s);
11 }
12