WvStreams
wvstreamex.cc
1 /*
2  * A WvStream example.
3  *
4  * Some documentation for WvStreams...
5  */
6 
7 #include <wvstream.h>
8 
9 int main()
10 {
11  while (wvin->isok())
12  wvout->print("You said: %s\n", wvin->blocking_getline(-1));
13 }