| 6041 | } |
| 6042 | |
| 6043 | int PSL_defpoints (struct PSL_CTRL *PSL, const char *param, double fontsize) { |
| 6044 | PSL_command (PSL, "/%s %d def\n", param, psl_ip (PSL, fontsize)); |
| 6045 | return (PSL_NO_ERROR); |
| 6046 | } |
| 6047 | |
| 6048 | int PSL_definteger (struct PSL_CTRL *PSL, const char *param, int value) { |
| 6049 | PSL_command (PSL, "/%s %d def\n", param, value); |
no test coverage detected