Utility Functions : List of Utility Functions : stm_list_load

stm_list_load
Function Type
stm_list
Description
Loads a previously saved list into memory to be used by the program. Lists can be saved by several tools in Rational Statemate, such as search.
Syntax
stm_list_load (list_name, &status)
Arguments
Input/Output
 
Status Codes
Example
To load a list saved as the name EXT_SIGNALS into memory, use the following call:

 

stm_list list;
int status;
.
.
list = stm_list_load ("EXT_SIGNALS", &status);
.
.

Once a list has been loaded, you can operate on it using any of the Dataport functions.