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

Function align

src/gpre/languages/ada.cpp:484–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482//
483
484static void align( int column)
485{
486 if (column < 0)
487 return;
488
489 putc('\n', gpreGlob.out_file);
490
491 for (int i = column / 8; i; --i)
492 putc('\t', gpreGlob.out_file);
493
494 for (int i = column % 8; i; --i)
495 putc(' ', gpreGlob.out_file);
496}
497
498
499//____________________________________________________________

Callers 7

gen_anyFunction · 0.70
gen_loopFunction · 0.70
gen_return_valueFunction · 0.70
gen_s_startFunction · 0.70
gen_t_startFunction · 0.70
printaFunction · 0.70
t_start_autoFunction · 0.70

Calls 1

putcFunction · 0.85

Tested by

no test coverage detected