table_rowtrim - trim blanks out of a row structure.
SYNOPSYS
#include "table.h"
void table_rowtrim(row, width, precision, ncol, justify, selection, nsel)
PARAMETERS
- TableRow row
- the row to trim.
- int *width
- width of each column.
- int *precision
- precision of each column.
- int ncol
- number of entries in width and precision
- int *justify
- justification options for each col
- int *selection
- selection of columns
- int nsel
- number of selections
DESCRIPTION
Blank spaces in the values of the row are trimmed out inplace.
The widths and numeric precision of the values in the row are
recorded in the width and precision arrays. table_trim is a
low level routine invoked by table_row on each row of the
table read when the table header mode was TABLE_PARSE.