make_lt_name - Makes an associated label table (LT) filename

SYNTAX

#include "ltable.h"

FUNCTION char *make_lt_name (innam,num)

     char               *innam;
     long                num;

PARAMETERS

innam (input, char, length(*))

Master LT filename.

num (input, long)

A numeric value which is appended to the master LT filename generating the associated LT filename. The application program should increment num each time the function is called.

DESCRIPTION

The make_lt_name() routine makes an associated LT filename. A numeric value, specified by parameter num, is appended to the master LT filename, specified by parameter innam. Parameter num should be incremented each time make_lt_name() is called. Note that associated LT files do not require a special naming convention. This routine was developed only as a convenient method of generating LT filenames.

RETURN VALUE

make_lt_name() returns a pointer to the associated LT filename.

SPECIAL CONSIDERATIONS:

The make_lt_name() call is for C only.