├── .github └── FUNDING.yml ├── .gitignore ├── Makefile └── unpackelf.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/unpackelf/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe 3 | unpackelf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/unpackelf/HEAD/Makefile -------------------------------------------------------------------------------- /unpackelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osm0sis/unpackelf/HEAD/unpackelf.c --------------------------------------------------------------------------------