Node:PAnsiChar, Next:ParamCount, Previous:Page, Up:Reference
(Under construction.)
type PAnsiChar = ^AnsiChar;
PAnsiChar is a Borland Delphi extension.
PAnsiChar
program PAnsiCharDemo; var s: PAnsiChar; begin s := 'Hello, world!'; {$X+} WriteLn (s) end.