forked from xunknown/calltree
-
Notifications
You must be signed in to change notification settings - Fork 0
This repository was created to maintain "calltree", initial source code from calltree-2.3. "calltree" is a static call tree generator for C programs. It parses a collection of input files and builds a graph that represents the static call structure of the files.
License
weizengke/calltree
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
calltree - static call tree generator for C programs The calltree command parses a collection of input files (assuming C syntax) and builds a graph that represents the static call structure of these files. Calltree is similar to cflow(1) but unlike cflow(1), calltree is not based on lint(1). Calltree implements some more functions than cflow(1), but does not list the return types of the functions. This is because calltree includes an own C parser and thus may be used even on systems that don't have lint(1). The disadvantage is that the C parser that is used by calltree is not completely correct and may not find all calls of a function. This is mainly true for calls that are done via function pointers. Calltree is able to detect recursive function calls (e.g. functions that call themselves). Recursive function calls are marked with an ellipsis in the output.
About
This repository was created to maintain "calltree", initial source code from calltree-2.3. "calltree" is a static call tree generator for C programs. It parses a collection of input files and builds a graph that represents the static call structure of the files.
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- C 60.9%
- M4 26.6%
- Shell 5.0%
- Roff 1.9%
- Python 1.7%
- Makefile 1.1%
- Other 2.8%