hnlPrintMessage
hnlPrintMessage(
t_text
)
=> t
Description
Prints the text argument to the stdout port if executed in the Cadence non-graphical environment. If the function is called from within the Cadence graphics environment, the output is written to the CIW window.
Use this function instead of the following fprintf function:
fprintf( stdout text )
The function is defined in /bin/si and also in the Cadence graphics program. You cannot modify this function.
Arguments
Value Returned
Examples
hnlPrintMessage( "Cannot open file simout.tmp\n" )
Related Topics
Return to top