Node:CString, Next:CString2String, Previous:Cos, Up:Reference
(Under construction.)
type CString = ^Char;
CString is a GNU Pascal extension.
CString
program CStringDemo; var s: CString; begin s := 'Hello, world!'; {$X+} WriteLn (s) end.