stm_r_xx_synonymRetrieves the synonym of the specified element. The synonym is defined in the element’s form.
information-
flow
user-defined
type
Input/Output To write out the synonym of activityA1
, use the following statements:stm_id act_id;
int status;
.
.
act_id = stm_r_ac ("A1", &status);
printf ("Synonym:%s", stm_r_ac_synonym (act_id,
&status));
.
.
.