typedef Vector

Quick question:

I have the following line in a (pure) *C* code:

typedef DTYPE* Vector;

As far as I know, Vector datatypes does not exist in C. What am I missing? Is there "Vector" datatype in C, or should I look in somewhere else to get to know what is that "Vector"?

Thank you very much, in advance.
[]
Brandt
It's a typedef. That line is defining the name Vector to be an alias to pointers to DTYPE.
Topic archived. No new replies allowed.