MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / arg_is_string

Function arg_is_string

src/gpre/gpre.cpp:1259–1271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1257//
1258
1259static bool arg_is_string(SLONG argc, TEXT** argvstring, const TEXT* errstring)
1260{
1261 const TEXT* str = *++argvstring;
1262
1263 if (!argc || *str == '-')
1264 {
1265 fprintf(stderr, "%s", errstring);
1266 print_switches();
1267 return false;
1268 }
1269
1270 return true;
1271}
1272
1273
1274//____________________________________________________________

Callers 1

get_switchesFunction · 0.85

Calls 1

print_switchesFunction · 0.85

Tested by

no test coverage detected