home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m242 / 2.ddi / VER2FUNC.ZIP / GRMOVE.C < prev    next >
Encoding:
Text File  |  1989-10-16  |  236 b   |  9 lines

  1. /* function to draw a line from a base point */
  2. void grmove(x,y,color)
  3. int x; /* column coordinate of end point */
  4. int y; /* row coordinate of end point */
  5. int color; /* foreground color of line */
  6. {
  7.     eg_lineto(x,y,color,0);
  8. }
  9.