Generating call graphs for standard library calls in doxygen?
I have this problem with doxygen. When i generate the documentation of my code, sometimes i need find the callers for a specific standard libra开发者_JAVA技巧ry calls like strcpy. what i need is a graph that shows each function that calls for example strcpy or printf.
I think one way to solve this problem is by copying the include files of libc into my source directory but this is not so practical solution. Is there anyway to generate such graph without copying the include files ??
Doxygen only creates Inheritance diagram for the classes/methods in your documentation. There are addons that allow you to create entire graphs but I dont think they will include library functions.
精彩评论