table_parsline - parse a line from a table file.

SYNOPSYS

#include "table.h"

TableRow table_parsline(file, row)

PARAMETERS

File file
the file to read the line from.
TableRow row
the row to fill in.

DESCRIPTION

Parse a line from file and return a TableRow structure. If row is NULL a new TableRow structure will be allocated and returned to the user. This is a low level routine used internally by libtab. User programs should call table_row.

Returns a TableRow structure containing the parsed contents of the next line from file.