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

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