Discussion:
[Cocci] Changing the name of a structure
Drimbarean, Andrei
2018-01-03 15:50:41 UTC
Permalink
Hello,
Another small point, The Linux kernel frowns on typedefs for structs. So
really you want to turn it into
struct example
char me;
long you;
} struct_example;
int main (void) {
struct example *DeV;
...
}
Thank you!

Andrei

Loading...