Read Table in a Block
Description
This function locates the start of a table in a block in a file. The table is denoted using “{“ and “}”.C Calling Sequence
int c_rto_start_table_read(const char *block, char *form);
Arguments
| Argument | Type | Description | |
|---|---|---|---|
| block | Character Array | Input | This contains the block name in a TeimOrbit file. | 
| form | Character Array | Output | This contains the table column headings. | 
FORTRAN Calling Sequence:
DLLFUNC void STDCALL RTO_START_TABLE_READ_F2C(char *blockName, int len1, int
          *blockNameLen, char *format, int len2, int *formatLen, int *success)
Arguments
| Argument | Type | Description | |
|---|---|---|---|
| blockName | Character Array | Input | This contains the block name in a TeimOrbit file. | 
| blockNameLen | Integer | Input | This contains the number of characters in the block name. | 
| format | Character Array | Output | This contains the table column headings. | 
| formatLen | Integer | Output | This contains the number of characters in the format string. | 
| success | Integer | Output | If the value is read then success return 1 or else 0. |