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

Function gmt_check_executable

src/gmt_support.c:18567–18574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18565}
18566
18567bool gmt_check_executable (struct GMT_CTRL *GMT, char *program, char *arg, char *pattern, char *text) {
18568 /* To avoid function name change in several GMT files. */
18569 bool status = gmt_run_process_get_first_line (GMT, program, arg, text);
18570 if (status && pattern && strstr (text, pattern) == NULL) {
18571 GMT_Report (GMT->parent, GMT_MSG_DEBUG, "gmt_check_executable failed pattern %s test\n", pattern);
18572 }
18573 return (status);
18574}
18575
18576void gmt_extend_region (struct GMT_CTRL *GMT, double wesn[], unsigned int mode, double inc[]) {
18577 /* Extend the region outward according to mode */

Callers 4

gmtplot_latex_epsFunction · 0.85
GMT_docsFunction · 0.85
GMT_movieFunction · 0.85
GMT_psconvertFunction · 0.85

Calls 2

GMT_ReportFunction · 0.85

Tested by

no test coverage detected