#ifndef _GLOBALS_H #define _GLOBALS_H const int BITS_PER_WORD = 8; // # of bits-per-char const int ALPH_SIZE = (1 << BITS_PER_WORD); // should be 2^BITS_PER_WORD const int BITS_PER_INT = 32; const int PSEUDO_EOF = ALPH_SIZE + 1; #endif