| 5016 | } |
| 5017 | |
| 5018 | char * PSL_makefontsize (struct PSL_CTRL *PSL, double size) { |
| 5019 | /* Creates a text string with the corresponding PS command to set the font (current font) with no color info */ |
| 5020 | static char buffer[PSL_BUFSIZ]; |
| 5021 | sprintf (buffer, "%d F%d", psl_ip (PSL, size), PSL->current.font_no); |
| 5022 | return (buffer); |
| 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 */ |
no test coverage detected