Dec 06 - added c mode, initially using search but it will 
	not allow matching only beginning from the current 
	iterator.
Dec 08 12 am -> C Mode highlights a keyword only if it is 
	whole, i.e. not part of a word.
Dec 08 12:15 am -> Reverted back to old tab key actual work, 
	i.e. tab key saved in backend,	which is important.
Dec 08 12:42 am -> Tab key biggest problem is that we should 
	move to the next line if pressed at
	end of current line, and we have to move topChar 
	forward by RM characters when tab key
	pressed at end of last line of display !!, this is a 
	headache. Tried to do it, but some
	work needs to be done.
Dec 08 1:14 am -> display of cmode changed to a COLOR_PAIR 
	instead of attron(A_BOLD) !! looks cool!
Dec 08 1:52 am -> Tried indenting in c mode back.cpp line 123, 
	not working as of now, no idea why.
Dec 08 11:24 am -> indenting problem remains, ....?!?!??! 
	some weird stuff happenin' here.
Dec 08 11:54 am -> C Mode Indenting is working !!! Problem 
	was in the display and not in the actual
	processing :-(, but it's working now :-).
Dec 08 11:57 am -> started on the paren i.e. matching 
	parentheses find.
Dec 08 12:00 pm -> paren working, only display needs to be 
	worked out!
Dec 18 00:28 -> indenting w.r.t. newline fixed, now it goes 
	to the beginning of the code in the newline, i.e. 
	currChar skips over
	the tabs in the beginning of the line. 
Dec 18 01:17 -> Added command line parameter parsing for 
	files ; example - $ gyte foo.cpp
Dec 18 10:51 -> Added CTRL key detection using a macro, 
	usage : CTRL('c') for Ctrl-c combination, as far
	I have seen case don't matter i.e. 'c' and 'C' is
	same, but don't use dangerous keys such as 'j',
 	why ?? ==> CTRL('j') is nothing but ENTER i.e. 10!
Dec 18 23:01 -> Look for "ALERT" to see things to be taken care of.
	Going through the code and making optimizations, and general
	debugging.
Dec 19 09:58 -> 60% of back.cpp
