/*
 ============================================================================
 Name        : Structures.h
 Author      : Matt Boutell, David Mutchler and YOUR-NAME-HERE
 Description : An exercise to introduce structures.
 ============================================================================
 */

#ifndef STRUCTURES_H_
#define STRUCTURES_H_

Dog* constructRandomDog1();
Dog constructRandomDog2();

void printDog1(Dog* dog);
void printDog2(Dog dog);

#endif /* STRUCTURES_H_ */