home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 272_01 / kbhit.doc < prev    next >
Text File  |  1987-07-17  |  700b  |  39 lines

  1.  
  2.  
  3.         NAME
  4.                 kbhit -- check keyboard (stdin) for character available
  5.  
  6.         SYNOPSIS
  7.                 r = kbhit();
  8.                 int r;      returns TRUE or FALSE
  9.  
  10.  
  11.         DESCRIPTION
  12.         This function returns TRUE (not 0) if a character is available
  13.         from keyboard (stdin).  This function will not recognize a character
  14.         which was replaced with ungetc().  If stdin is redirected from
  15.         a file, this function will likely always return TRUE.
  16.  
  17.  
  18.  
  19.  
  20.         EXAMPLE
  21.  
  22.                 if(kbhit()) puts("There is a character waiting");
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.         This function is found in SMDLx.LIB for the Datalight Compiler.
  39.