├── Makefile ├── README.md ├── binaries ├── linux │ ├── qcndiff32 │ └── qcndiff64 └── windows │ ├── qcndiff32.exe │ └── qcndiff64.exe ├── main.cpp ├── nv.txt ├── qcn.cpp ├── qcn.hpp └── testfiles ├── 906k.txt ├── 906s.txt ├── G900F-bkp.txt ├── empty.txt ├── tst1.txt └── tst2.txt /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/README.md -------------------------------------------------------------------------------- /binaries/linux/qcndiff32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/binaries/linux/qcndiff32 -------------------------------------------------------------------------------- /binaries/linux/qcndiff64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/binaries/linux/qcndiff64 -------------------------------------------------------------------------------- /binaries/windows/qcndiff32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/binaries/windows/qcndiff32.exe -------------------------------------------------------------------------------- /binaries/windows/qcndiff64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/binaries/windows/qcndiff64.exe -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/main.cpp -------------------------------------------------------------------------------- /nv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/nv.txt -------------------------------------------------------------------------------- /qcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/qcn.cpp -------------------------------------------------------------------------------- /qcn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/qcn.hpp -------------------------------------------------------------------------------- /testfiles/906k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/testfiles/906k.txt -------------------------------------------------------------------------------- /testfiles/906s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/testfiles/906s.txt -------------------------------------------------------------------------------- /testfiles/G900F-bkp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/testfiles/G900F-bkp.txt -------------------------------------------------------------------------------- /testfiles/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testfiles/tst1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/testfiles/tst1.txt -------------------------------------------------------------------------------- /testfiles/tst2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl12345/qcn/HEAD/testfiles/tst2.txt --------------------------------------------------------------------------------