Returns a list of the and-lines associated with the specified state. The input argumentID
is an element ID of anand-state
.
Input/Output Note: Refer to Data Types for the exact structure of the returned value.To return a list of the and-lines for a specifiedstate_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);