|
||
int wstringc ( char *txt, int line, int pos )
char *txt; // string to display int line; // screen line int pos; // screen column
|
|
|
Synopsis |
#include "silver.h"
The wstringc function displays string txt on the screen at at the line and column specified by line and pos . The remainder of the line is cleared.
|
|
Parameters |
txt is a null-terminated string containing the text to display. line and pos are character coordinates on the screen, with 1 <= line <= schar_height , and 1 <= pos <= schar_width .
|
|
Return Value |
wstringc returns the column following the last character in txt .
|
|
See Also |
|
|
|
|