ufpGetName()
Return the user-given name of the input command associated with the user function.
Syntax
name = ufpGetName ( ufpHd ) ;
Type
AcuSolve User-Defined Function Basic Routine
Parameters
- ufpHd (pointer)
- The opaque handle which was passed to the user function.
Return Value
The returned string value is the user-given name of the input command calling this user function.
Description
This routine returns the user-given name of the input command associated with the user function.
This facilitates correlating with the input file.
For
example,
String user_name ;
...
user_name = ufpGetName( ufpHd ) ;
printf( "Inside command with name %s\n", user_name ) ;
Errors
This routine expects a valid ufpHd as an argument; an invalid argument returns an error.