MCPcopy Create free account
hub / github.com/F-Stack/f-stack / print_table_divider

Function print_table_divider

dpdk/doc/guides/conf.py:252–260  ·  view source on GitHub ↗

Print the table divider line.

(outfile, num_cols)

Source from the content-addressed store, hash-verified

250
251
252def print_table_divider(outfile, num_cols):
253 """ Print the table divider line. """
254 line = ' '
255 column_dividers = ['='] * num_cols
256 line += ' '.join(column_dividers)
257
258 feature = '=' * feature_str_len
259
260 print_table_row(outfile, feature, line)
261
262
263def print_table_css(outfile, table_id):

Callers 2

print_table_headerFunction · 0.85
print_table_bodyFunction · 0.85

Calls 1

print_table_rowFunction · 0.85

Tested by

no test coverage detected