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

  1. /* function to draw a line from a base position to a point that is */
  2. /* given as a delta from the base                                  */
  3. void grdmove(x,y,color)
  4. int x;         /* delta offset from base column */
  5. int y;         /* delta offset from the base row */
  6. int color;     /* foreground color of line */
  7. {
  8.     eg_lineto(x,y,color,1);
  9. }
  10.