ufpGetUsrStrs()

Return the array of user supplied strings.

Syntax

usrStrs = ufpGetUsrStrs ( ufpHd ) ;

Type

AcuSolve User-Defined Function Basic Routine

Parameters

ufpHd (pointer)
The opaque handle which was passed to the user function.

Return Value

The return value is an array of user strings given in the input file. This array has ufpGetNumUsrStrs() entries.

Description

This routine returns the array of user strings given in the input file. For example,
String*      usrStr ;
usrStr       = ufpGetUsrStrs( ufpHd ) ;
/*---------------------------------------------------------------------------
* Get the solution for user equation usrStr[0]
* ---------------------------------------------------------------------------
*/
ufpVal       = ufpGetUfpData( ufpHd, usrStr[0] ) ;

Errors

This routine expects a valid ufpHd.