Modified MY_TABLE_OPENING_FUNCTION to handle multiple functions.

Now, you can declare as many file opening, closing and modifying
functions as you need, simply by delimiting each one with the pipe |.

MY_TABLE_OPENING_FUNCTION=D_OPEN|D_CLOSE|D_ZAP

---

Fixed CONVERT_*_TO_// so it would leave a space after the //

Otherwise:

*********

converted to

//*******

and the second and third characters looked like /*, turning on block
commenting.

Now, it converts to

// *******

---

Modified Click! so that it understands END CLASS as well as ENDCLASS, for
Class(y) support.

---

Added END CLASS to Click.ini

---

Added CLEAN_UP_INCLUDES=YES to CLICK.INI.

This Determines if #includes will be beautified. Beautification consists
of lower case #define, converting the delimiters to "" and upper case
file name.

#INCLUDE 'somefile.CH'
#include "nextFILE.CH"

becomes

#include "SOMEFILE.CH"
#include "NEXTFILE.CH"

Prior to this version, you had no control over this clean up and it
defaulted to YES.