Single-Element Functions : List of Functions : stm_r_ch_creator

stm_r_ch_creator
Returns the name of the Rational Statemate user who created the specified chart.
Note:
Function Type
stm_user_name
For Elements
Syntax
stm_r_ch_creator (ch_id, &status)
Arguments
Input/Output
Status Codes
Example
To return the name of the user who created the chart, use the following statements:

stm_id chart_id;
int status;
.
.
.
chart_id = stm_r_ch ("TOP", &status);
printf ("\n Chart created by: %s",
stm_r_ch_creator (chart_id, &status));
.
.
.
The name output is the name of the user who created the chart named TOP.