! . */
| 10843 | |
| 10844 | /*! . */ |
| 10845 | struct GMT_POSTSCRIPT * gmtlib_duplicate_ps (struct GMT_CTRL *GMT, struct GMT_POSTSCRIPT *P_from, unsigned int mode) { |
| 10846 | /* Duplicates a GMT_POSTSCRIPT structure. Mode not used yet */ |
| 10847 | struct GMT_POSTSCRIPT *P = gmtlib_create_ps (GMT, P_from->n_bytes); |
| 10848 | gmt_M_unused(mode); |
| 10849 | gmtplot_copy_ps (GMT, P, P_from); |
| 10850 | return (P); |
| 10851 | } |
| 10852 | |
| 10853 | struct GMT_POSTSCRIPT * gmt_get_postscript (struct GMT_CTRL *GMT) { |
| 10854 | struct GMT_POSTSCRIPT *P = NULL; |
no test coverage detected