Hello,
Here is my problem:
I declare the vector struct in my .h file and then try to access its fields in the .c file. I did declare a variable of type vector. However, I get a compiler error saying that 'vector has no member named' [x] where x is the fields I defined in my struct. Here is my struct def in the .h file:
typedef struct {
void* elems;
int elemSize;
int logLength;
int allocLength;
} vector;
Thanks!
Liz