put_lt_time - Writes the time field into the labeled table (LT)

SYNTAX

#include "ltable.h"

FUNCTION put_lt_time (vec,time)

     struct VECTOR      *vec;
     struct LT_TIME     *time;

PARAMETERS

vec (Input/Output, struct VECTOR)

Pointer to a structure defining a field within a LT logical record. Note that vec the linked list defining the LT record.

time (Input, struct LT_TIME)

The time to be written to the LT.

DESCRIPTION

The put_lt_time() routine writes the time field into the labeled table. The structure is defined to be:

     struct LT_TIME
       {
       long hour;
       long minute;
       long second;
       }
The time is stored as an ASCII string within the labeled table I/O buffer with the following format:
     hr:min:sec
Error checking is not done to ensure the time is valid.

RETURN VALUE

put_lt_time() has no return values.

SPECIAL CONSIDERATIONS:

The put_lt_time() call is for C only.