[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
(Under construction.)
type PtrWord = PtrCard; |
An unsigned integer type of the same size as a pointer.
program PtrWordDemo; var a: PtrWord; p: Pointer; begin GetMem (p, 10); a := PtrWord (p); Inc (a); p := Pointer (a) end. |