#include <stdbool.h>
typedef struct clothes
{
bool hat;
bool scarf;
} clothes;
typedef struct yak_shaver
{
unsigned int id;
char name[64]; const char *owner; char *description; char **children; clothes *clothes; struct
{
struct yak_shaver *next;
struct yak_shaver *prev;
} list; } yak_shaver;