Single-Element Functions : List of Functions : stm_r_ch_creation_date

stm_r_ch_creation_date
Returns the date (as a string) on which the specified chart was created.
Note:
Function Type
stm_date
For Elements
Syntax
stm_r_ch_creation_date (ch_id, &status)
Arguments
 
Input/Output
Status Codes
Example
To return the chart date, use the following statements:

stm_id chart_id;
int status;
.
.
chart_id = stm_r_ch ("TOP", &status);
printf ("\n Chart created on: %s",
stm_r_ch_creation_date (chart_id, &status));
.
.
The date output is the date on which the chart named TOP was created.