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

Function align

src/gpre/int_cxx.cpp:173–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171//
172
173static void align(const int column)
174{
175 if (column < 0)
176 return;
177
178 putc('\n', gpreGlob.out_file);
179
180 for (int i = column / 8; i; --i)
181 putc('\t', gpreGlob.out_file);
182
183 for (int i = column % 8; i; --i)
184 putc(' ', gpreGlob.out_file);
185}
186
187
188//____________________________________________________________

Callers 13

INT_CXX_actionFunction · 0.70
asgn_fromFunction · 0.70
gen_databaseFunction · 0.70
gen_emodifyFunction · 0.70
gen_estoreFunction · 0.70
gen_forFunction · 0.70
gen_rawFunction · 0.70
gen_requestFunction · 0.70
gen_sendFunction · 0.70
gen_startFunction · 0.70
gen_variableFunction · 0.70
make_portFunction · 0.70

Calls 1

putcFunction · 0.85

Tested by

no test coverage detected