home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 273_01 / flushkey.cc < prev    next >
Text File  |  1987-09-24  |  100b  |  6 lines

  1. flush_key()
  2. /* This will flush the keyboard buffer */
  3. {
  4.     while(bioskey(1) != 0) bioskey(0);
  5. }
  6.