copy_text
Purpose
Format text to fit on line with a length of 74
Syntax
int copy_text( int string_length, char *buffer, char *text )
Description
The copy_text subroutine will take the text string and add \n so that the string can be displayed without wrapping.
Parameters
Parameter | Description |
---|---|
string_length | Starting column for the formatted string |
buffer | Formatted string |
text | Unformatted string |
Return Value
A value of 0 is returned.