Hi Ben,
On Tue, Sep 27, 2016 at 8:40 AM, Ben Coman wrote:
> First, my C is a bit rusty so a question about semantics...
>
> int * a;
> typedef int * MyInt;
> MyInt b;
>
> So obviously the type of 'a' is a pointer,
> but is the type of 'b' a pointer?
> My intuition is that its not, since th
First, my C is a bit rusty so a question about semantics...
int * a;
typedef int * MyInt;
MyInt b;
So obviously the type of 'a' is a pointer,
but is the type of 'b' a pointer?
My intuition is that its not, since the pointer is wrapped inside the type.
Now in my UFFI tutorial
http://blog.o