home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG Library 8 / PC-SIG Library CD-ROM (8th Edition) (1990-04).iso / 201_300 / disk0216 / scrinit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1984-05-04  |  934 b   |  20 lines

  1. /*                          *** scrinit.c ***                        */
  2. /*                                                                   */
  3. /* IBM - PC microsoft "C"                                            */
  4. /*                                                                   */
  5. /* Function to initialize the screen and keyboard control arrays.    */
  6. /* Currently is only a dummy function getting its information from   */
  7. /* a header file (scontrol.h).                                       */
  8. /*                                                                   */
  9. /* Written by L. Cuthbertson, April 1984.                            */
  10. /*                                                                   */
  11. /*********************************************************************/
  12. /*                                                                   */
  13.  
  14. #include "scontrol.h"
  15.  
  16. scrinit()
  17. {
  18.     return(0);
  19. }
  20.