| 400 | // |
| 401 | |
| 402 | ref* MSC_reference(ref** link) |
| 403 | { |
| 404 | ref* reference = (ref*) MSC_alloc(REF_LEN); |
| 405 | |
| 406 | if (link) |
| 407 | { |
| 408 | reference->ref_next = *link; |
| 409 | *link = reference; |
| 410 | } |
| 411 | |
| 412 | return reference; |
| 413 | } |
| 414 | |
| 415 | |
| 416 | //____________________________________________________________ |
no test coverage detected