home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / zsus / progpack / cvidlib.lbr / Z3VINIT.CQ / Z3VINIT.C
Encoding:
Text File  |  1992-05-13  |  768 b   |  35 lines

  1. /***********************************************************
  2.  *    Name    : Z3VINIT
  3.  *
  4.  *    Usage   : z3vinit(environ)
  5.  *          vidinit(vid)
  6.  *
  7.  *    Inputs  : environ = pointer to the environment
  8.  *          vid     = pointer to the termcap
  9.  *          
  10.  *    Returns : nothing.
  11.  *          
  12.  *    Date Written : 86 May 10
  13.  **********************************************************/
  14.  
  15. char *vidptr;
  16.  
  17. z3vinit(ptr)
  18. char *ptr;
  19. {
  20.     extern char *envptr;
  21.  
  22.     envptr = ptr;    /* set the environment pointer  */
  23.     vidptr = ptr+128;    /* set the video pointer    */
  24. }
  25.  
  26. /********************* End Of Function ********************/
  27.  
  28. vidinit(ptr)
  29. char *ptr;
  30. {
  31.     vidptr = ptr;    /* set the video pointer    */
  32. }
  33.  
  34. /********************* End Of Function ********************/
  35.