I got the following code I am analyzing, and I am not really sure about the typedef struct and struct in functions. In global the following code is:
typedef struct
{
float width, height, start;
unsigned int *pixmap;
}arguments;
But when I look at a function in the same program below I can find this:
struct arguments{
float start;
float width;
float height;
unsigned int *pixmap;
};
My question is, is it necassary to add this struct arguments
in the function since i already declared it in global?
Not necessarily. Since the struct is declared in global scope, you can still use it. Just keep in mind the differences between
typedef struct
andstruct
which you can read up on here and know that the order of the members in the global struct is different than the order of the members in the function struct, which is also quite important.