A89: >> "Transfer" of values between C and ASM


[Prev][Next][Index][Thread]

A89: >> "Transfer" of values between C and ASM




In a message dated 8/4/99 5:00:07 PM Eastern Daylight Time, e96nbr@efd.lth.se 
writes:

> > > list_header *List_Find(list_pointer *pointer, USHORT ID);
>  >
>  > what does the * do?
>  >
>  > >  You can now do this:
>  > >  list *mylist;
>  >
>  > is this how to define a list?  and again what does the * do?

alright sorry l think l got it now.  (This may be wrong) but if you do this:

int pointer;
int a;
a = 20;
pointer = a;
*pointer = 5

then a will now equal 5 and pointer will "contain" a?


Follow-Ups: