From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ca21162c929cc36f X-Google-Attributes: gid103376,public From: jdemby@voicenet.com (John Demby) Subject: Re: Implementing pointers to pointers in Ada Date: 1996/09/10 Message-ID: <512mt3$ret@goodnews.voicenet.com>#1/1 X-Deja-AN: 179597405 references: organization: Voicenet - Internet Access - (215)674-9290 newsgroups: comp.lang.ada Date: 1996-09-10T00:00:00+00:00 List-Id: Vasilios Tourloupis wrote: >Dear Ada users, >As the title suggests, how would I go about implementing pointers to >pointers in Ada? >For example, I have declared the following variable in C: > unsigned **a; >How would this be expressed in Ada terms? in general : type unsigned is blah; type unsigned_star is access unsigned; type unsigned_star_star is access unsigned_star; if you really need to make a pointer to a pointer to an unsigned the package interfaces.c should have an type which is equivalent to C's unsigned. happy computing John