delorie.com/djgpp/doc/libc/libc_679.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <pc.h> void ScreenPutString(const char *str, int attr, int column, int row); |
Beginning at screen position given by column and row, this function displays the string given by str. Each string character gets the attribute given by attr. If column or row have values outside legal range for current video mode, nothing happens. The variables row and column are zero-based (e.g., the topmost row is row 0).
None.
ANSI/ISO C | No |
POSIX | No |
ScreenPutString("Hello, world!", (BLUE << 4) | LIGHTBLUE, 20, 10); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |