#ifndef _DOG_H_
#define _DOG_H_
#include "basics.h"
   typedef struct {
      int age;
      name_t name;
      float weight;
      int num_bones;
      } dog;

// function prototype
int collect_bones (int how_many, dog *the_dog);
#endif