home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / croutes.zip / SCRINIT.C < prev    next >
Text File  |  1984-05-04  |  934b  |  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.