// GuestInfoFixed.h

#ifndef _GuestInfoFixed_h
#define _GuestInfoFixed_h 1

const int STRSIZE = 100;

struct GuestInfoFixed {
  char   name[STRSIZE+1];
  char   address[STRSIZE+1];
  int    roomNumber;
  float	 charges;
};
#endif
