/* useful utilities, but make sure to include this code in your submission */

#ifndef UTILITIES_H
#define UTILITIES_H

#include "player.h"

#define will_beat(play) ("\001\002\000"[play])
#define will_lose_to(play) ("\002\000\001"[play])

#endif
