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

Function align

src/gpre/languages/pas.cpp:510–522  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

508//
509
510static void align(const int column)
511{
512 putc('\n', gpreGlob.out_file);
513
514 if (column < 0)
515 return;
516
517 for (int i = column / 8; i; --i)
518 putc('\t', gpreGlob.out_file);
519
520 for (int i = column % 8; i; --i)
521 putc(' ', gpreGlob.out_file);
522}
523
524
525//____________________________________________________________

Callers 15

asgn_fromFunction · 0.70
asgn_sqlda_fromFunction · 0.70
asgn_to_procFunction · 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_fetchFunction · 0.70
gen_get_segmentFunction · 0.70

Calls 1

putcFunction · 0.85

Tested by

no test coverage detected