pause
Summary
#include <dataman/dataman.h>
-or-
#include <dataman/sort.h>
pause(row,col,string);
int row,col;
char *string;
Description
This routine prints a message, sounds a bell, and waits
for the system defined 'help' key to be entered. The
arguments row and col represent the position to place the
message on the terminal. String is a character string
that contains the message to be displayed.
Example
#include <dataman/dataman.h>
main(int argc, char *argv[])
{
...
get(log_ix,k_buff) else {
pause(10,10,"Can't find key, try again");
continue;
}
....
}
«previous next»