// LiteralType.h

#ifndef LiteralType_h
#define LiteralType_h 1

union LiteralType {
  char     c;
  long int i;
  double   d;
  char     str[100];
};
#endif
