| 5023 | } |
| 5024 | |
| 5025 | char * PSL_makecolor (struct PSL_CTRL *PSL, double rgb[]) { |
| 5026 | /* Creates a text string with the corresponding PS command to set the color */ |
| 5027 | static char buffer[PSL_BUFSIZ]; |
| 5028 | sprintf (buffer, "%s", psl_putcolor (PSL, rgb, 0)); |
| 5029 | return (buffer); |
| 5030 | } |
| 5031 | |
| 5032 | int PSL_settextmode (struct PSL_CTRL *PSL, int mode) { |
| 5033 | /* Change from laissez-faire to replacing hyphens with minus sign char code */ |
no test coverage detected