├── .gitignore ├── LICENSE ├── README.md ├── elf.go ├── main.go ├── screenshot.png └── tui.go /.gitignore: -------------------------------------------------------------------------------- 1 | elftree 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/README.md -------------------------------------------------------------------------------- /elf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/elf.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/main.go -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/screenshot.png -------------------------------------------------------------------------------- /tui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/elftree/HEAD/tui.go --------------------------------------------------------------------------------