home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsv / ch6_4 / pt2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-22  |  133 b   |  7 lines

  1. typedef struct pt2Struct{
  2.   int x,y;
  3. } pt2;
  4.  
  5. extern pt2* addPt2(pt2 *a, pt2 *b, pt2 *c);
  6. extern pt2* subPt2(pt2 *a, pt2 *b, pt2 *c);
  7.