by CBFalconer <cbfalconer@[EMAIL PROTECTED]
>
Dec 15, 2004 at 04:07 AM
victor75040@[EMAIL PROTECTED]
wrote:
>
> I understand the use of the ^ in pointers and how pointers work.
> I recently came accross some code where they have for example:
>
> T^^.next
It simply means that T is a pointer to a pointer to a record with a
field called next.
TYPE
a = ^b;
b = RECORD
next : c;
END;
c = whatever;
d = ^a;
VAR
T : d;
if I haven't goofed, should cover it.
--
Chuck F (cbfalconer@[EMAIL PROTECTED]
) (cbfalconer@[EMAIL PROTECTED]
)
Available for consulting/tem****ary embedded and systems.
<http://cbfalconer.home.att.net>
USE worldnet address!