├── .gitattributes ├── .github └── workflows │ ├── build-optimized.yml │ └── build-unoptimized.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── COPYING ├── COPYING.gpl3 ├── Makefile ├── README.md ├── bps.ico ├── bps_spec.md ├── configure ├── crc32.cpp ├── crc32.h ├── data ├── com.github.Alcaro.Flips-symbolic.svg ├── com.github.Alcaro.Flips.desktop ├── com.github.Alcaro.Flips.metainfo.xml ├── com.github.Alcaro.Flips.svg ├── flips-main-window.png └── flips-preferences-window.png ├── divsufsort.c ├── divsufsort.h ├── flatpak └── com.github.Alcaro.Flips.json ├── flips-cli.cpp ├── flips-gtk.cpp ├── flips-w32.cpp ├── flips.Manifest ├── flips.cpp ├── flips.h ├── flips.ico ├── flips.rc ├── global.h ├── ips.ico ├── libbps-suf.cpp ├── libbps.cpp ├── libbps.h ├── libdivsufsort-2.0.1 ├── AUTHORS ├── CMakeLists.txt ├── CMakeModules │ ├── AppendCompilerFlags.cmake │ ├── CheckFunctionKeywords.cmake │ ├── CheckLFS.cmake │ ├── ProjectCPack.cmake │ └── cmake_uninstall.cmake.in ├── COPYING ├── ChangeLog ├── ChangeLog.old ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── VERSION ├── aclocal.m4 ├── config │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing ├── configure ├── configure.ac ├── examples │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── bwt.c │ ├── mksary.c │ ├── sasearch.c │ ├── suftest.c │ └── unbwt.c ├── include │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── config.h.cmake │ ├── config.h.in │ ├── divsufsort.h │ ├── divsufsort.h.cmake │ ├── divsufsort64.h.in │ ├── divsufsort_private.h │ └── lfs.h.cmake ├── lib │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── divsufsort.c │ ├── libdivsufsort.sym │ ├── libdivsufsort64.sym │ ├── sssort.c │ ├── trsort.c │ └── utils.c ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 └── pkgconfig │ ├── CMakeLists.txt │ └── libdivsufsort.pc.cmake ├── libips.cpp ├── libips.h ├── libups.cpp ├── libups.h ├── make-linux.sh ├── make-macos.sh ├── make-windows.sh ├── profile ├── firefox-10.0esr.tar └── firefox-17.0esr.tar └── special.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-optimized.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.github/workflows/build-optimized.yml -------------------------------------------------------------------------------- /.github/workflows/build-unoptimized.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.github/workflows/build-unoptimized.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.intelliSenseEngineFallback": "Enabled" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.gpl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/COPYING.gpl3 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/README.md -------------------------------------------------------------------------------- /bps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/bps.ico -------------------------------------------------------------------------------- /bps_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/bps_spec.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/configure -------------------------------------------------------------------------------- /crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/crc32.cpp -------------------------------------------------------------------------------- /crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/crc32.h -------------------------------------------------------------------------------- /data/com.github.Alcaro.Flips-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/com.github.Alcaro.Flips-symbolic.svg -------------------------------------------------------------------------------- /data/com.github.Alcaro.Flips.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/com.github.Alcaro.Flips.desktop -------------------------------------------------------------------------------- /data/com.github.Alcaro.Flips.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/com.github.Alcaro.Flips.metainfo.xml -------------------------------------------------------------------------------- /data/com.github.Alcaro.Flips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/com.github.Alcaro.Flips.svg -------------------------------------------------------------------------------- /data/flips-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/flips-main-window.png -------------------------------------------------------------------------------- /data/flips-preferences-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/data/flips-preferences-window.png -------------------------------------------------------------------------------- /divsufsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/divsufsort.c -------------------------------------------------------------------------------- /divsufsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/divsufsort.h -------------------------------------------------------------------------------- /flatpak/com.github.Alcaro.Flips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flatpak/com.github.Alcaro.Flips.json -------------------------------------------------------------------------------- /flips-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips-cli.cpp -------------------------------------------------------------------------------- /flips-gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips-gtk.cpp -------------------------------------------------------------------------------- /flips-w32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips-w32.cpp -------------------------------------------------------------------------------- /flips.Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips.Manifest -------------------------------------------------------------------------------- /flips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips.cpp -------------------------------------------------------------------------------- /flips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips.h -------------------------------------------------------------------------------- /flips.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips.ico -------------------------------------------------------------------------------- /flips.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/flips.rc -------------------------------------------------------------------------------- /global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/global.h -------------------------------------------------------------------------------- /ips.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/ips.ico -------------------------------------------------------------------------------- /libbps-suf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libbps-suf.cpp -------------------------------------------------------------------------------- /libbps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libbps.cpp -------------------------------------------------------------------------------- /libbps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libbps.h -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/AUTHORS: -------------------------------------------------------------------------------- 1 | -- AUTHORS for libdivsufsort 2 | 3 | Yuta Mori 4 | -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeLists.txt -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeModules/AppendCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeModules/AppendCompilerFlags.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeModules/CheckFunctionKeywords.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeModules/CheckFunctionKeywords.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeModules/CheckLFS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeModules/CheckLFS.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeModules/ProjectCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeModules/ProjectCPack.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/CMakeModules/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/CMakeModules/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/COPYING -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/ChangeLog -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/ChangeLog.old -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/INSTALL -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/Makefile.am -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/Makefile.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/NEWS -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/README -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.1 2 | -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/aclocal.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/config.guess -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/config.sub -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/depcomp -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/install-sh -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/ltmain.sh -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/config/missing -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/configure -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/configure.ac -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/Makefile.am -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/Makefile.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/bwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/bwt.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/mksary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/mksary.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/sasearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/sasearch.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/suftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/suftest.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/examples/unbwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/examples/unbwt.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/CMakeLists.txt -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/Makefile.am -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/Makefile.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/config.h -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/config.h.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/config.h.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/divsufsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/divsufsort.h -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/divsufsort.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/divsufsort.h.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/divsufsort64.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/divsufsort64.h.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/divsufsort_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/divsufsort_private.h -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/include/lfs.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/include/lfs.h.cmake -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/CMakeLists.txt -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/Makefile.am -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/Makefile.in -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/divsufsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/divsufsort.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/libdivsufsort.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/libdivsufsort.sym -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/libdivsufsort64.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/libdivsufsort64.sym -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/sssort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/sssort.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/trsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/trsort.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/lib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/lib/utils.c -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/m4/libtool.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/m4/ltoptions.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/m4/ltsugar.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/m4/ltversion.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/pkgconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/pkgconfig/CMakeLists.txt -------------------------------------------------------------------------------- /libdivsufsort-2.0.1/pkgconfig/libdivsufsort.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libdivsufsort-2.0.1/pkgconfig/libdivsufsort.pc.cmake -------------------------------------------------------------------------------- /libips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libips.cpp -------------------------------------------------------------------------------- /libips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libips.h -------------------------------------------------------------------------------- /libups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libups.cpp -------------------------------------------------------------------------------- /libups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/libups.h -------------------------------------------------------------------------------- /make-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/make-linux.sh -------------------------------------------------------------------------------- /make-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/make-macos.sh -------------------------------------------------------------------------------- /make-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/make-windows.sh -------------------------------------------------------------------------------- /profile/firefox-10.0esr.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/profile/firefox-10.0esr.tar -------------------------------------------------------------------------------- /profile/firefox-17.0esr.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/profile/firefox-17.0esr.tar -------------------------------------------------------------------------------- /special.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alcaro/Flips/HEAD/special.sh --------------------------------------------------------------------------------