Char Types 

www.madshi.net

Some "char" type extensions:

type
  TPChar   = ^char;

  TSChar   = set of char;
  TPSChar  = ^TSChar;

  TAChar   = array [0..maxInt-1] of char;
  TPAChar  = ^TAChar;

  TDAChar  = array of char;
  TPDAChar = ^TDAChar;