I'm having some nasty error with one header file being included with different linkages (namely, stdio.h with and withoun "extern C"). So, I need to find where one specific header file is included.
I am aware of doxygen but unfortunately the header I'm interested is stdio.h, which is also included by Qt. So the only way (that I'm familiar with) to use doxygen - is to scan entire Qt folder. That could take forever.
So, is it possible to find out, where one header is included, without drawing include graphs for every headers in the project? Or is there some other way of solving this?