| 279 | */ |
| 280 | |
| 281 | TARGETS * targetchain( TARGETS * chain, TARGETS * targets ) |
| 282 | { |
| 283 | if ( !targets ) return chain; |
| 284 | if ( !chain ) return targets; |
| 285 | |
| 286 | chain->tail->next = targets; |
| 287 | chain->tail = targets->tail; |
| 288 | return chain; |
| 289 | } |
| 290 | |
| 291 | /* |
| 292 | * action_free - decrement the ACTIONs refrence count and (maybe) free it. |