/*------------------------------------------------------------------------------
Copyright (C) John-Philip Taylor
jpt13653903@gmail.com
--------------------------------------------------------------------------------
This is a binary search tree to optimise the scanner. It facilitates the
greedy match operation. The tree is only balanced once, so something like
a red-black tree is not required.
It consists of a balanced BST of the first character, each containing a
balanced sub-tree of the next character, etc.
------------------------------------------------------------------------------*/
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// Finds the longest match and returns the token type null-terminated array
const TokenType* ;
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------