// GuestNode.h

#ifndef _GuestNode_h
#define _GuestNode_h 1

#include "String.h"

struct GuestNode {
  String name;
  GuestNode *link;
};
typedef GuestNode *GuestPtr;
#endif
