home *** CD-ROM | disk | FTP | other *** search
- /* function to draw a line from a base position to a point that is */
- /* given as a delta from the base */
- void grdmove(x,y,color)
- int x; /* delta offset from base column */
- int y; /* delta offset from the base row */
- int color; /* foreground color of line */
- {
- eg_lineto(x,y,color,1);
- }