将 C/C++ 代码转换为流程图
两种样式:
| | |
|:-:|:-:|
|折线|平滑|
||
|
bash
cargo install cxx2flow
可以到 GitHub Actions 或 Nightly.link 下载最新构建的二进制,包含 Linux 和 Windows 版本。
为了编译生成的 dot 文件,你需要安装 graphviz,并将其添加到 PATH 中。也可以将生成的结果复制进在线的 graphviz 服务中,如 http://magjac.com/graphviz-visual-editor/ 。
``` cxx2flow 0.2.0 mgt. mgt@oi-wiki.org Convert your C/C++ code to control flow chart
USAGE: cxx2flow [FLAGS] [OPTIONS] [FUNCTION]
FLAGS: -c, --curved Sets the style of the flow chart. If specified, output flow chart will have curved connection line. -h, --help Prints help information -V, --version Prints version information
OPTIONS: -o, --output
ARGS:
Sets the input file. e.g. test.cpp
Note that you need to manually compile the dot file using graphviz to get SVG or PNG files. EXAMPLES: cxx2flow test.cpp | dot -Tpng -o test.png cxx2flow main.cpp mycustomfunc | dot -Tsvg -o test.svg ```