hnlPrintString
hnlPrintString(t_text[g_general] ) => t / nil
Description
Prints the SKILL string text argument to the netlist file.
If a comment is too long to fit on one line, as determined by the hnlMaxLineLength variable, this function converts the comment into multiple single-line comments and adds the comment character, as specified by the hnlCommentStr variable, to the beginning of each line.
If a line is not a comment, but is too long, a new line is inserted after the maximum line length is reached. The maximum line length is determined by the hnlMaxLineLength variable. If the hnlLinePostfix variable is not nil, the string specified by this variable is appended to all continued lines. If the hnlLinePrefix variable is not nil, the string specified by this variable is placed at the beginning of all continued lines after the inserted new line.
This function also accepts an optional argument that specifies if a new line should be created after a maximum line length.
Arguments
Value Returned
Examples
hnlPrintString( "The current cell is a netlist primitive." )
Related Topics
Return to top