├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── build.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── decoder.cpp ├── encoder.cpp ├── flic.h ├── flic_details.h └── stdio.cpp /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/README.md -------------------------------------------------------------------------------- /decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/decoder.cpp -------------------------------------------------------------------------------- /encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/encoder.cpp -------------------------------------------------------------------------------- /flic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/flic.h -------------------------------------------------------------------------------- /flic_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/flic_details.h -------------------------------------------------------------------------------- /stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/flic/HEAD/stdio.cpp --------------------------------------------------------------------------------