* Duplicate a single rr_t structure or the whole list (based on * "first" param) using pkg_malloc */
| 336 | * "first" param) using pkg_malloc |
| 337 | */ |
| 338 | int duplicate_rr(rr_t** _new, rr_t* _r, int first) |
| 339 | { |
| 340 | return do_duplicate_rr(_new, _r, 0, first); |
| 341 | } |
| 342 | |
| 343 | |
| 344 | /* |
nothing calls this directly
no test coverage detected