+char daysLetters[7] = "MTWRFSU";
+
+char *days[7] = {
+ "Monday", "Tuesday", "Wednesday", "Thursday",
+ "Friday", "Saturday", "Sunday" };
+
+char monthsLetters[12] = "JFMAMJJASOND";
+
+char *months[12] = {
+ "January", "February", "March", "April", "May", "June",
+ "July", "August", "September", "October", "November", "December" };
+
+char usage[] = "Usage: clock.exe -[FLAGS]... -[FLAGS]...\n"
+ "<T> (time)\n"
+ "\tIf T is below 0 it will be set to 0\n"
+ "\tIf T is above 3 it will be set to 3\n"
+ "\t\t-T = 0: display nothing\n"
+ "\t\t-T = 1: display seconds\n"
+ "\t\t-T = 2: above + minutes\n"
+ "\t\t-T = 3: above + hours\n"
+ "<D> (date)\n"
+ "\tIf D is below 0 it will be set to 0\n"
+ "\tIf D is above 3 it will be set to 3\n"
+ "\t\t-D = 0: display nothing\n"
+ "\t\t-D = 1: display day\n"
+ "\t\t-D = 2: above + month\n"
+ "\t\t-D = 3: above + year\n"
+ "<B> (debug - optional)\n\n"
+ "\tB doesnt need to be set\n"
+ "\tIf B is below 0 it will be set to 0\n"
+ "\tIf B is above 1 it will be set to 1\n"
+ "\t\t-B = 0: display nothing\n"
+ "\t\t-B = 1: turn on debugging mode";
+
+int colon[5] = { SPACE, BLOCK, SPACE, BLOCK, SPACE };
+