├── .github └── workflows │ ├── aur.yml │ ├── deploy.yml │ └── test.yml ├── APKBUILD ├── CMakeLists.txt ├── LICENSE ├── PKGBUILD ├── README.md ├── snap ├── .snapcraft │ └── state └── snapcraft.yaml └── src └── t2sz.c /.github/workflows/aur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/.github/workflows/aur.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/APKBUILD -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/README.md -------------------------------------------------------------------------------- /snap/.snapcraft/state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/snap/.snapcraft/state -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/t2sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinellimarco/t2sz/HEAD/src/t2sz.c --------------------------------------------------------------------------------