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

Function align

src/gpre/c_cxx.cpp:523–535  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

521//
522
523static void align( int column)
524{
525 if (column < 0)
526 return;
527
528 putc('\n', gpreGlob.out_file);
529
530 for (int i = column / 8; i; --i)
531 putc('\t', gpreGlob.out_file);
532
533 for (int i = column % 8; i; --i)
534 putc(' ', gpreGlob.out_file);
535}
536
537
538//____________________________________________________________

Callers 15

asgn_fromFunction · 0.70
asgn_toFunction · 0.70
asgn_to_procFunction · 0.70
gen_anyFunction · 0.70
gen_basedFunction · 0.70
gen_blob_openFunction · 0.70
gen_compileFunction · 0.70
gen_create_databaseFunction · 0.70
gen_ddlFunction · 0.70
gen_drop_databaseFunction · 0.70
gen_emodifyFunction · 0.70
gen_estoreFunction · 0.70

Calls 1

putcFunction · 0.85

Tested by

no test coverage detected