I have defined a struct (let call it test) in file a.h, this struct should be used by many files.
In the file b.h I need to use this struct, but not as a pointer (struct test a[32] and not struct test* a) as one of the attributes of another struct (let call it test_container).
but I'm receiving error: array type has incomplete element type.
I'm guessing it happening because the compiler does not know the test struct, so it can't determent how much space does test_container required.
so I'm trying to add #include <a.h> in b.h, but then I'm receiving fatal error: a.h: No such file or directory. both files are in the same directory.
what is the problem?
#include "a.h"