| 1638 | |
| 1639 | |
| 1640 | void BURP_msg_partial(bool err, USHORT number, const SafeArg& arg) |
| 1641 | { |
| 1642 | /************************************** |
| 1643 | * |
| 1644 | * B U R P _ m s g _ p a r t i a l |
| 1645 | * |
| 1646 | ************************************** |
| 1647 | * |
| 1648 | * Functional description |
| 1649 | * Retrieve a message from the error file, |
| 1650 | * format it, and print it without a newline. |
| 1651 | * |
| 1652 | **************************************/ |
| 1653 | TEXT buffer[256]; |
| 1654 | |
| 1655 | fb_msg_format(NULL, burp_msg_fac, number, sizeof(buffer), buffer, arg); |
| 1656 | burp_output(err, "%s", buffer); |
| 1657 | } |
| 1658 | |
| 1659 | |
| 1660 | void BURP_msg_put(bool err, USHORT number, const SafeArg& arg) |
no test coverage detected