├── .gitattributes ├── .gitignore ├── LICENSE ├── drvver ├── CMakeLists.txt └── drvver.c ├── findver ├── CMakeLists.txt └── findver.c └── hexfind ├── CMakeLists.txt └── findhex.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /drvver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/drvver/CMakeLists.txt -------------------------------------------------------------------------------- /drvver/drvver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/drvver/drvver.c -------------------------------------------------------------------------------- /findver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/findver/CMakeLists.txt -------------------------------------------------------------------------------- /findver/findver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/findver/findver.c -------------------------------------------------------------------------------- /hexfind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/hexfind/CMakeLists.txt -------------------------------------------------------------------------------- /hexfind/findhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LongSoft/UBU-helpers/HEAD/hexfind/findhex.c --------------------------------------------------------------------------------