Guest_imported
New member
- Jan 1, 1970
- 0
How do I interpret the following declaration?
typedef struct x* y
Is "x" a dummy variable, such that "y" is defined as a pointer type that points to any type of struct? I ask this because I am trying to reverse engineer some code where "y" is referenced heavily as a variable type, and no other mention of "x" is made in any other headers, etc.
typedef struct x* y
Is "x" a dummy variable, such that "y" is defined as a pointer type that points to any type of struct? I ask this because I am trying to reverse engineer some code where "y" is referenced heavily as a variable type, and no other mention of "x" is made in any other headers, etc.