Union KeyType

#include <bt.h>

A KeyType can be either an integer or a string of length MAX_KEY_SIZE.

union KeyType
{
	int intkey;
	char charkey[MAX_KEY_SIZE];
};
#define MAX_KEY_SIZE 220