home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_12 / 9n12114a < prev    next >
Text File  |  1991-10-21  |  268b  |  18 lines

  1. /* LISTING 4 - CIRCLE.C */
  2. #include "obj.h"
  3.  
  4. int circle_getcolor(CIRCLE *pc)
  5.    {
  6.    return pc->color;
  7.    }
  8.  
  9. int circle_setcolor(CIRCLE *pc, int color)
  10.    {
  11.    pc->color = color;
  12.    }
  13.  
  14.  
  15. CIRCLE_ACTIONS cact =
  16.     { circle_getcolor, circle_setcolor };
  17.  
  18.