| 8010 | |
| 8011 | #if 0 // We have no current need for this anymore |
| 8012 | GMT_LOCAL void gmtplot_wipe_substr(char *str1, char *str2) { |
| 8013 | /* Set the substring str2 of str1 to blanks */ |
| 8014 | return; |
| 8015 | char *pch; |
| 8016 | if ((pch = strstr(str1, str2)) != NULL) { |
| 8017 | size_t k; |
| 8018 | for (k = 0; k < strlen(str2); k++) |
| 8019 | pch[k] = ' '; |
| 8020 | } |
| 8021 | } |
| 8022 | #endif |
| 8023 | |
| 8024 | char *gmt_importproj4 (struct GMT_CTRL *GMT, char *pStr, int *scale_pos, char *epsg2proj) { |