├── .github └── workflows │ ├── c.yml │ └── coverity.yml ├── LICENSE ├── Makefile ├── README.md ├── dat.h ├── elf.c ├── elf.h ├── fns.h ├── print.c └── str.c /.github/workflows/c.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/.github/workflows/c.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/README.md -------------------------------------------------------------------------------- /dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/dat.h -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/elf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/elf.h -------------------------------------------------------------------------------- /fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/fns.h -------------------------------------------------------------------------------- /print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/print.c -------------------------------------------------------------------------------- /str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0intro/libelf/HEAD/str.c --------------------------------------------------------------------------------