I have the following project structure:
/source:
-- data_module_entry.c (main.c)
-- /data_module
-- -- data_process.c
-- -- data_process.h
-- /data_libs
-- -- data_stat.c
-- -- data_stat.h
-- -- data_io.c
-- -- data_io.h
I have functions from data_io.c and from data_process.c in data_module_entry.c.
Also data_process.c uses functions from data_stat.c.
But I can't properly set up a links between those files to make it work.
What should be the exact sequences of #include ""?