//set.h //John T. Rine //October 15, 2011 #ifndef _SET_H #define _SET_H struct Set { char ** setPtr; int numberOfElements; }; typedef struct Set set; set parseSet(char *); int cntChars(char *); int checkSetNotation(char *); int occurrences(char *, char); void displaySet(set); #endif