stm_r_xx_chart
● For compound arrows, this function retrieves the chart only when all the arrow segments are in the same element. Otherwise, it returns the value 0.
Input/Output To return the name of the chart in which stateS1
is found, use the following statements:stm_id state_id, chart_id;
int status;
.
.
.
state_id = stm_r_st ("S1", &status);
chart_id = stm_r_st_chart (state_id, &status);
printf ("chart name is: %s", stm_r_ch_name (chart_id,
&status));
.
.