#include "ltable.h"
FUNCTION get_lt_time (vec,time)
struct VECTOR *vec; struct LT_TIME *time;
Pointer to a structure defining a field within an LT logical record. Note that vec the linked list defining the LT record.
The time read from the LT.
The get_lt_date() routine reads the date field from the labeled table and returns it to the application program in a structure. The structure is defined to be:
struct LT_TIME { long hour; long minute; long second; }It is assumed the time is stored as an ASCII string within the labeled table I/O buffer with the following format:
hr:min:secError checking is not done to ensure the time is valid.
get_lt_time() has no return values.