├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── include ├── libugomemo.h └── libugomemo │ ├── config.h │ ├── flipnote_constants.h │ ├── functions.h │ ├── general_types.h │ ├── kwz_types.h │ ├── macros.h │ └── ppm_types.h ├── make.sh ├── src ├── audio.c ├── crc32.c ├── kwz_audio.c ├── kwz_meta.c ├── kwz_video.c ├── math.c ├── ppm_audio.c ├── ppm_meta.c └── ppm_video.c └── tests ├── crc32_test.c ├── misc_test.c ├── ppm_audio_test.c └── ppm_video_test.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/TODO.md -------------------------------------------------------------------------------- /include/libugomemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo.h -------------------------------------------------------------------------------- /include/libugomemo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/config.h -------------------------------------------------------------------------------- /include/libugomemo/flipnote_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/flipnote_constants.h -------------------------------------------------------------------------------- /include/libugomemo/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/functions.h -------------------------------------------------------------------------------- /include/libugomemo/general_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/general_types.h -------------------------------------------------------------------------------- /include/libugomemo/kwz_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/kwz_types.h -------------------------------------------------------------------------------- /include/libugomemo/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/macros.h -------------------------------------------------------------------------------- /include/libugomemo/ppm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/include/libugomemo/ppm_types.h -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/make.sh -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/crc32.c -------------------------------------------------------------------------------- /src/kwz_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/kwz_audio.c -------------------------------------------------------------------------------- /src/kwz_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/kwz_meta.c -------------------------------------------------------------------------------- /src/kwz_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/kwz_video.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/math.c -------------------------------------------------------------------------------- /src/ppm_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/ppm_audio.c -------------------------------------------------------------------------------- /src/ppm_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/ppm_meta.c -------------------------------------------------------------------------------- /src/ppm_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/src/ppm_video.c -------------------------------------------------------------------------------- /tests/crc32_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/tests/crc32_test.c -------------------------------------------------------------------------------- /tests/misc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/tests/misc_test.c -------------------------------------------------------------------------------- /tests/ppm_audio_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/tests/ppm_audio_test.c -------------------------------------------------------------------------------- /tests/ppm_video_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemo/libugomemo/HEAD/tests/ppm_video_test.c --------------------------------------------------------------------------------