#ifndef BASIC_H #define BASIC_H #include #include #include #define LIMIT 30 #define PRINTLIMIT 100 #define ON 1 #define OFF 0 struct Element{ char words[LIMIT]; int count; int length; int rank; }; #endif