Single-Element Functions : List of Functions : stm_r_st_andlines

stm_r_st_andlines
Returns a list of the and-lines associated with the specified state. The input argument ID is an element ID of an and-state.
Function Type
stm_and_line_list
For Elements
Syntax
stm_r_st_andlines (id, &status)
Arguments
 
Input/Output
Status Codes
Note: Refer to Data Types for the exact structure of the returned value.
Example
To return a list of the and-lines for a specified state_id, use the following call:

stm_id state_id;
int status;
stm_and_line_list st_list;
.
.
if (stm_r_st_type (state_id, &status) == stm_st_and)
st_list = stm_r_st_andlines (state_id, &status);