Functions Network is a script that allows you to visualize the link between every function of a C project. The better use of this script is to use it on a project norm with the 42 Norm.
apt-get install python3
pip install -r requirements.txt
python funtions_network.py <path to files or directories> ...
The links between functions are created when a function call another function and is represented as an arrow. When using multiples files and directories, every file will be colored in a different color.
python funtions_network.py file1.c file2.c
python funtions_network.py dir/
This script use the following librarie:
Created by Valentin Lepiller as side projectof the 42 school. Feel free to use it! :)