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

Function make_name_formatted

src/gpre/languages/cob.cpp:3845–3854  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3843//
3844
3845static void make_name_formatted(TEXT* const string, const TEXT* format,
3846 const gpre_sym* symbol)
3847{
3848 fb_utils::snprintf(string, MAX_CURSOR_SIZE, format, symbol->sym_string);
3849 for (TEXT* s = string; *s; s++)
3850 {
3851 if (*s == '_')
3852 *s = '-';
3853 }
3854}
3855
3856
3857//____________________________________________________________

Callers 10

gen_cursor_openFunction · 0.70
gen_dyn_closeFunction · 0.70
gen_dyn_declareFunction · 0.70
gen_dyn_describeFunction · 0.70
gen_dyn_executeFunction · 0.70
gen_dyn_fetchFunction · 0.70
gen_dyn_insertFunction · 0.70
gen_dyn_openFunction · 0.70
gen_dyn_prepareFunction · 0.70
make_nameFunction · 0.70

Calls 1

snprintfFunction · 0.50

Tested by

no test coverage detected