|
||
int wstring ( char *txt, int line, int pos )
char *txt; // string to display int line; // screen line int pos; // screen column
|
|
|
Synopsis |
#include "silver.h"
The wstring function displays string txt on the screen at at the line and column specified by line and pos .
|
|
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 |
wstring returns the column following the last character in txt .
|
|
See Also |
|
|
|
|