this is my .h file:
struct _MyString;
typedef struct _MyString MyString;
i would like to declare its members in the .c file.
i tried:
typedef struct MyString{
char * _str;// pointer to the matrix
unsigned long _strLength;
}MyString;
but it doesn't work. how do i declare the struct's memebers in the .c file?
thank you