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