#ifndef __STACK_POINTER_H__
#define __STACK_POINTER_H__

/* Size of all stack arrays */
#ifndef MAX_STACK_SIZE
#define MAX_STACK_SIZE 50
#endif 

struct string_stack {
  int topPosition;
  char* items[MAX_STACK_SIZE];
};      /* type for a stack of strings */

#endif
