I\'ve defined a struct item in a .h file. Now I\'m defining another struct tPCB in another .h which is part of the same project, and I need the
struct item
struct tPCB
You need to use #include. In C, everything is explicit; don't expect it to work by magic.