MCPcopy Create free account
hub / github.com/GenericMappingTools/gmt / gmtplot_wipe_substr

Function gmtplot_wipe_substr

src/gmt_plot.c:8012–8021  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8010
8011#if 0 // We have no current need for this anymore
8012GMT_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
8024char *gmt_importproj4 (struct GMT_CTRL *GMT, char *pStr, int *scale_pos, char *epsg2proj) {

Callers 1

gmt_importproj4Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected