#include "dog.h"
#include "fish.h"
#include "cat.h"
	

typedef enum {DOG, FISH, CAT} pet_kind;


   typedef struct {
      pet_kind kind;
      union { dog mydog;
         fish myfish;
         cat mycat;
         } info;
      } pet;



