| 889 | // |
| 890 | |
| 891 | static int print_word( ctl* control) |
| 892 | { |
| 893 | const UCHAR v1 = BLR_BYTE; |
| 894 | const UCHAR v2 = BLR_BYTE; |
| 895 | sprintf(control->ctl_ptr, control->ctl_language ? "chr(%d),chr(%d), " : "%d,%d, ", v1, v2); |
| 896 | ADVANCE_PTR(control->ctl_ptr); |
| 897 | |
| 898 | return (v2 << 8) | v1; |
| 899 | } |
| 900 |
no test coverage detected