| 3760 | |
| 3761 | |
| 3762 | void CVT_move(const dsc* from, dsc* to, DecimalStatus decSt, ErrorFunction err) |
| 3763 | { |
| 3764 | /************************************** |
| 3765 | * |
| 3766 | * C V T _ m o v e |
| 3767 | * |
| 3768 | ************************************** |
| 3769 | * |
| 3770 | * Functional description |
| 3771 | * Move (and possible convert) something to something else. |
| 3772 | * |
| 3773 | **************************************/ |
| 3774 | CommonCallbacks callbacks(err); |
| 3775 | CVT_move_common(from, to, decSt, &callbacks); |
| 3776 | } |
no test coverage detected