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

Function align

src/gpre/obj_cxx.cpp:532–544  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

530//
531
532static void align( int column)
533{
534 if (column < 0)
535 return;
536
537 putc('\n', gpreGlob.out_file);
538
539 for (int i = column / 8; i; --i)
540 putc('\t', gpreGlob.out_file);
541
542 for (int i = column % 8; i; --i)
543 putc(' ', gpreGlob.out_file);
544}
545
546
547//____________________________________________________________

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