├── .clang-format ├── .clang_complete ├── .cmake-format.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── modules │ └── VersionFromVCS.cmake ├── docs ├── README.md └── images │ ├── caelum.png │ ├── hastyhex.png │ ├── kisasum-ui.png │ └── krycekium.png ├── include ├── baulk │ ├── hash.hpp │ ├── indicators.hpp │ ├── misc.hpp │ ├── net.hpp │ └── net │ │ ├── client.hpp │ │ ├── tcp.hpp │ │ └── types.hpp ├── belautils.hpp ├── belautilsversion.h ├── belautilsversion.h.cmake ├── json.hpp ├── json.hpp.lock ├── placement.hpp └── vfsenv.hpp ├── lib ├── CMakeLists.txt ├── ced │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── compact_enc_det │ │ ├── compact_enc_det.cc │ │ ├── compact_enc_det.h │ │ ├── compact_enc_det_fuzz_test.cc │ │ ├── compact_enc_det_generated_tables.h │ │ ├── compact_enc_det_generated_tables2.h │ │ ├── compact_enc_det_hint_code.cc │ │ ├── compact_enc_det_hint_code.h │ │ ├── compact_enc_det_unittest.cc │ │ └── detail_head_string.inc │ ├── util │ │ ├── basictypes.h │ │ ├── case_insensitive_hash.h │ │ ├── commandlineflags.h │ │ ├── encodings │ │ │ ├── encodings.cc │ │ │ ├── encodings.h │ │ │ ├── encodings.pb.h │ │ │ └── encodings_unittest.cc │ │ ├── languages │ │ │ ├── languages.cc │ │ │ ├── languages.h │ │ │ └── languages.pb.h │ │ ├── logging.h │ │ ├── port.h │ │ ├── string_util.h │ │ └── varsetter.h │ └── version.lock ├── hashlib │ ├── CMakeLists.txt │ ├── blake2.hpp │ ├── hashlib.cc │ ├── k12.hpp │ └── sumizer.hpp ├── misc │ ├── CMakeLists.txt │ ├── chardet.cc │ ├── hash.cc │ └── indicators.cc └── winutils │ ├── CMakeLists.txt │ ├── winui.hpp │ └── winutils.cc ├── script ├── bona-image-rename.bat └── bona-image-rename.ps1 ├── test └── replace.cc ├── tools ├── CMakeLists.txt ├── bona │ ├── CMakeLists.txt │ ├── bona.cc │ ├── bona.chardet.cc │ ├── bona.elf.cc │ ├── bona.hpp │ ├── bona.macho.cc │ ├── bona.manifest │ ├── bona.pe.cc │ ├── bona.rc │ ├── bona.xml.cc │ ├── bona.zip.cc │ ├── resource.h │ └── writer.hpp ├── caelum │ ├── CMakeLists.txt │ ├── README.md │ ├── caelum.cc │ ├── caelum.hpp │ ├── caelum.ico │ ├── caelum.manifest │ ├── caelum.rc │ ├── pe.hpp │ ├── pecoff.cc │ ├── resolvelink.cc │ ├── resource.h │ ├── shl.hpp │ ├── window.cc │ └── window.hpp ├── hastyhex │ ├── CMakeLists.txt │ ├── README.md │ ├── UNLICENSE │ ├── hastyhex.cc │ ├── hastyhex.manifest │ ├── hastyhex.rc │ └── resource.h ├── kisasum │ ├── CMakeLists.txt │ ├── cli │ │ ├── fileutils.hpp │ │ ├── indicators.cc │ │ ├── indicators.hpp │ │ ├── kisasum.cc │ │ ├── kisasum.manifest │ │ ├── kisasum.rc │ │ └── resource.h │ └── ui │ │ ├── kisasum.cc │ │ ├── kisasum.hpp │ │ ├── kisasum.manifest │ │ ├── kisasum.rc │ │ ├── kisasumutils.cc │ │ ├── res │ │ ├── ic_fluent_copy_24_regular.svg │ │ ├── ic_fluent_copy_image_24_regular.svg │ │ ├── kisasum.ico │ │ └── kisasum.svg │ │ ├── resource.h │ │ ├── ui.cc │ │ └── ui.hpp └── krycekium │ ├── CMakeLists.txt │ ├── executor.cc │ ├── executor.hpp │ ├── km-cli.cc │ ├── kmutils.cc │ ├── kmutils.hpp │ ├── krycekium.cc │ ├── krycekium.hpp │ ├── krycekium.ico │ ├── krycekium.manifest │ ├── krycekium.rc │ ├── resource.h │ ├── window.cc │ └── window.hpp └── vendor ├── KangarooTwelve.lock ├── KangarooTwelve ├── ARMv8Asha3 │ ├── KeccakP-1600-ARMv8Asha3.S │ ├── KeccakP-1600-SnP.h │ └── KeccakP-1600-opt64.c ├── CMakeLists.txt ├── Inplace32BI │ ├── KeccakP-1600-SnP.h │ └── KeccakP-1600-inplace32BI.c ├── KangarooTwelve.c ├── KangarooTwelve.h ├── Optimized64 │ ├── KeccakP-1600-AVX2.s │ ├── KeccakP-1600-AVX512-plainC.c │ ├── KeccakP-1600-AVX512.s │ ├── KeccakP-1600-SnP.h │ ├── KeccakP-1600-opt64.c │ ├── KeccakP-1600-runtimeDispatch.c │ ├── KeccakP-1600-timesN-AVX2.c │ ├── KeccakP-1600-timesN-AVX512.c │ └── KeccakP-1600-timesN-SSSE3.c ├── Plain64 │ ├── KeccakP-1600-SnP.h │ └── KeccakP-1600-plain64.c ├── align.h └── brg_endian.h ├── README.md ├── bela.lock ├── bela ├── .clang-format ├── .clang_complete ├── .cmake-format.json ├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── build.bat ├── build.ps1 ├── clang-tidy.bat ├── clang-tidy.ps1 ├── compile_flags.txt ├── docs │ ├── README.md │ ├── en-US │ │ └── path.md │ └── zh-CN │ │ ├── README.md │ │ ├── path.md │ │ ├── strcat.md │ │ └── strformat.md ├── external │ ├── charconv │ │ ├── .clang-format │ │ ├── VERSION │ │ ├── charconv │ │ ├── xcharconv.h │ │ ├── xcharconv_ryu.h │ │ ├── xcharconv_ryu_tables.h │ │ └── xcharconv_tables.h │ ├── dtoa_milo.h │ ├── escapeargv.c │ ├── ntimage.h │ ├── ntimage.h.txt │ ├── semver.hpp │ ├── unicode.cc │ └── unicode.hpp ├── include │ ├── bela │ │ ├── __basal │ │ │ └── basal.hpp │ │ ├── __charconv │ │ │ ├── tables.hpp │ │ │ └── to_chars_base_10.hpp │ │ ├── __format │ │ │ └── args.hpp │ │ ├── __phmap │ │ │ ├── LICENSE │ │ │ ├── VERSION │ │ │ ├── btree.h │ │ │ ├── meminfo.h │ │ │ ├── phmap.h │ │ │ ├── phmap_base.h │ │ │ ├── phmap_bits.h │ │ │ ├── phmap_config.h │ │ │ ├── phmap_dump.h │ │ │ ├── phmap_fwd_decl.h │ │ │ └── phmap_utils.h │ │ ├── __strings │ │ │ ├── int128_have_intrinsic.inc │ │ │ ├── int128_no_intrinsic.inc │ │ │ ├── str_join_internal.hpp │ │ │ ├── str_join_narrow_internal.hpp │ │ │ ├── str_split_internal.hpp │ │ │ ├── str_split_narrow_internal.hpp │ │ │ └── string_cat_internal.hpp │ │ ├── __unicode │ │ │ └── unicode-width.hpp │ │ ├── __windows │ │ │ └── image.hpp │ │ ├── ascii.hpp │ │ ├── base.hpp │ │ ├── btree.hpp │ │ ├── buffer.hpp │ │ ├── bufio.hpp │ │ ├── bytes_view.hpp │ │ ├── charconv.hpp │ │ ├── city.hpp │ │ ├── codecvt.hpp │ │ ├── color.hpp │ │ ├── comutils.hpp │ │ ├── datetime.hpp │ │ ├── endian.hpp │ │ ├── env.hpp │ │ ├── escapeargv.hpp │ │ ├── escaping.hpp │ │ ├── fmt.hpp │ │ ├── fnmatch.hpp │ │ ├── fs.hpp │ │ ├── hash.hpp │ │ ├── int128.hpp │ │ ├── io.hpp │ │ ├── macros.hpp │ │ ├── match.hpp │ │ ├── numbers.hpp │ │ ├── os.hpp │ │ ├── parseargv.hpp │ │ ├── path.hpp │ │ ├── pe.hpp │ │ ├── phmap.hpp │ │ ├── picker.hpp │ │ ├── process.hpp │ │ ├── repasepoint.hpp │ │ ├── semver.hpp │ │ ├── simulator.hpp │ │ ├── static_string.hpp │ │ ├── str_cat.hpp │ │ ├── str_join.hpp │ │ ├── str_join_narrow.hpp │ │ ├── str_replace.hpp │ │ ├── str_split.hpp │ │ ├── str_split_narrow.hpp │ │ ├── strings.hpp │ │ ├── strip.hpp │ │ ├── subsitute.hpp │ │ ├── terminal.hpp │ │ ├── time.hpp │ │ ├── tokenizecmdline.hpp │ │ ├── types.hpp │ │ ├── und.hpp │ │ ├── unicode.hpp │ │ ├── utility.hpp │ │ └── win32.hpp │ └── hazel │ │ ├── details │ │ ├── DynamicTags.def │ │ ├── ELFRelocs │ │ │ ├── AArch64.def │ │ │ ├── AMDGPU.def │ │ │ ├── ARC.def │ │ │ ├── ARM.def │ │ │ ├── AVR.def │ │ │ ├── BPF.def │ │ │ ├── CSKY.def │ │ │ ├── Hexagon.def │ │ │ ├── Lanai.def │ │ │ ├── LoongArch.def │ │ │ ├── M68k.def │ │ │ ├── MSP430.def │ │ │ ├── Mips.def │ │ │ ├── PowerPC.def │ │ │ ├── PowerPC64.def │ │ │ ├── RISCV.def │ │ │ ├── Sparc.def │ │ │ ├── SystemZ.def │ │ │ ├── VE.def │ │ │ ├── i386.def │ │ │ └── x86_64.def │ │ ├── elf.h │ │ ├── macho.h │ │ └── version.lock │ │ ├── elf.hpp │ │ ├── fs.hpp │ │ ├── hazel.hpp │ │ ├── macho.hpp │ │ ├── types.hpp │ │ └── zip.hpp ├── res │ ├── 1903.manifest │ ├── longPathAware.manifest │ ├── utf8activeCodePage.manifest │ └── win10.manifest ├── src │ ├── bela │ │ ├── CMakeLists.txt │ │ ├── __charconv │ │ │ ├── charconv_float.cc │ │ │ ├── ryu.hpp │ │ │ └── ryu_tables.hpp │ │ ├── __fnmatch │ │ │ ├── fnmatch.cc │ │ │ └── fnmatch_internal.hpp │ │ ├── __format │ │ │ ├── fmt.cc │ │ │ └── writer.hpp │ │ ├── ascii.cc │ │ ├── city.cc │ │ ├── codecvt.cc │ │ ├── errno.cc │ │ ├── escaping.cc │ │ ├── int128.cc │ │ ├── match.cc │ │ ├── numbers.cc │ │ ├── str_cat.cc │ │ ├── str_replace.cc │ │ ├── str_split.cc │ │ ├── str_split_narrow.cc │ │ ├── subsitute.cc │ │ └── terminal.cc │ ├── belahash │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── blake3.lock │ │ ├── blake3 │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakePresets.json │ │ │ ├── Makefile.testing │ │ │ ├── README.md │ │ │ ├── blake3-config.cmake.in │ │ │ ├── blake3.c │ │ │ ├── blake3.h │ │ │ ├── blake3_avx2.c │ │ │ ├── blake3_avx2_x86-64_unix.S │ │ │ ├── blake3_avx2_x86-64_windows_gnu.S │ │ │ ├── blake3_avx2_x86-64_windows_msvc.asm │ │ │ ├── blake3_avx512.c │ │ │ ├── blake3_avx512_x86-64_unix.S │ │ │ ├── blake3_avx512_x86-64_windows_gnu.S │ │ │ ├── blake3_avx512_x86-64_windows_msvc.asm │ │ │ ├── blake3_dispatch.c │ │ │ ├── blake3_impl.h │ │ │ ├── blake3_neon.c │ │ │ ├── blake3_portable.c │ │ │ ├── blake3_sse2.c │ │ │ ├── blake3_sse2_x86-64_unix.S │ │ │ ├── blake3_sse2_x86-64_windows_gnu.S │ │ │ ├── blake3_sse2_x86-64_windows_msvc.asm │ │ │ ├── blake3_sse41.c │ │ │ ├── blake3_sse41_x86-64_unix.S │ │ │ ├── blake3_sse41_x86-64_windows_gnu.S │ │ │ ├── blake3_sse41_x86-64_windows_msvc.asm │ │ │ ├── example.c │ │ │ ├── libblake3.pc.in │ │ │ ├── main.c │ │ │ └── test.py │ │ ├── hashinternal.hpp │ │ ├── sha256-intel.cc │ │ ├── sha256.cc │ │ ├── sha3.cc │ │ ├── sha512.cc │ │ └── sm3.cc │ ├── belashl │ │ ├── CMakeLists.txt │ │ └── picker.cc │ ├── belatime │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── clock.cc │ │ ├── datetime.cc │ │ ├── dos.cc │ │ ├── duration.cc │ │ ├── format.cc │ │ ├── time.cc │ │ └── timezone.cc │ ├── belaund │ │ ├── CMakeLists.txt │ │ └── llvm │ │ │ ├── VERSION │ │ │ ├── include │ │ │ └── llvm │ │ │ │ └── Demangle │ │ │ │ ├── Demangle.h │ │ │ │ ├── DemangleConfig.h │ │ │ │ ├── ItaniumDemangle.h │ │ │ │ ├── ItaniumNodes.def │ │ │ │ ├── MicrosoftDemangle.h │ │ │ │ ├── MicrosoftDemangleNodes.h │ │ │ │ ├── README.txt │ │ │ │ ├── StringViewExtras.h │ │ │ │ └── Utility.h │ │ │ └── lib │ │ │ └── Demangle │ │ │ ├── CMakeLists.txt │ │ │ ├── DLangDemangle.cpp │ │ │ ├── Demangle.cpp │ │ │ ├── ItaniumDemangle.cpp │ │ │ ├── MicrosoftDemangle.cpp │ │ │ ├── MicrosoftDemangleNodes.cpp │ │ │ └── RustDemangle.cpp │ ├── belawin │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── env.cc │ │ ├── fs.cc │ │ ├── io.cc │ │ ├── path.cc │ │ ├── pe │ │ │ ├── README.md │ │ │ ├── delayimports.cc │ │ │ ├── dotnet.cc │ │ │ ├── exports.cc │ │ │ ├── file.cc │ │ │ ├── images │ │ │ │ └── pe32.svg │ │ │ ├── imports.cc │ │ │ ├── internal.hpp │ │ │ ├── overlay.cc │ │ │ ├── resource.cc │ │ │ ├── rva.cc │ │ │ ├── searcher.cc │ │ │ ├── section.cc │ │ │ ├── string.cc │ │ │ ├── symbol.cc │ │ │ └── version.cc │ │ ├── process.cc │ │ ├── realpath.cc │ │ └── simulator.cc │ └── hazel │ │ ├── CMakeLists.txt │ │ ├── elf │ │ ├── README.md │ │ ├── dynamic.cc │ │ ├── elf.cc │ │ ├── gnu.cc │ │ ├── images │ │ │ ├── ELF_Executable_and_Linkable_Format_diagram_by_Ange_Albertini.png │ │ │ └── Elf-layout.svg │ │ └── symbol.cc │ │ ├── fs.cc │ │ ├── hazel.cc │ │ ├── ina │ │ ├── archive.cc │ │ ├── binexeobj.cc │ │ ├── docs.cc │ │ ├── docs.hpp │ │ ├── font.cc │ │ ├── git.cc │ │ ├── hazelinc.hpp │ │ ├── image.cc │ │ ├── media.cc │ │ ├── shebang.cc │ │ ├── shl.cc │ │ ├── shl.hpp │ │ └── text.cc │ │ ├── macho │ │ ├── README.md │ │ ├── fat.cc │ │ ├── images │ │ │ ├── hello-macho.jpg │ │ │ └── micro-macho.jpg │ │ └── macho.cc │ │ ├── mime.cc │ │ └── zip │ │ ├── README.md │ │ ├── decompress.cc │ │ ├── filemode.cc │ │ ├── images │ │ ├── ZIP-64_Internal_Layout.svg │ │ └── winzipaes.md │ │ ├── zip.cc │ │ └── zipinternal.hpp ├── test │ ├── CMakeLists.txt │ ├── appexeclink │ │ ├── CMakeLists.txt │ │ ├── afunix.c │ │ ├── appexeclink.cc │ │ ├── fv.cc │ │ └── rptest.cc │ ├── base │ │ ├── CMakeLists.txt │ │ ├── ascii.cc │ │ ├── base.cc │ │ ├── cityhash.cc │ │ ├── constexpr_base.cc │ │ ├── delfile.cc │ │ ├── fnmatch.cc │ │ ├── iota.cc │ │ ├── startswith.cc │ │ ├── static_string.cc │ │ ├── strings_cat.cc │ │ ├── strsplit.cc │ │ └── unicodewidth.hpp │ ├── binview │ │ ├── CMakeLists.txt │ │ ├── elfview.cc │ │ └── machoview.cc │ ├── color │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── escape │ │ ├── CMakeLists.txt │ │ ├── escape.cc │ │ └── settitle.cc │ ├── escapeargv │ │ ├── CMakeLists.txt │ │ ├── eva.cc │ │ └── evw.cc │ ├── filehash │ │ ├── CMakeLists.txt │ │ └── filehash.cc │ ├── fmt │ │ ├── CMakeLists.txt │ │ ├── charconv.cc │ │ ├── main.cc │ │ ├── strjoin.cc │ │ ├── ucwidth-wt.hpp │ │ ├── ucwidth.cc │ │ └── unicode-width.cc │ ├── hazel │ │ ├── CMakeLists.txt │ │ ├── shebang-gen.cc │ │ └── zipview.cc │ ├── io │ │ ├── CMakeLists.txt │ │ └── readall.cc │ ├── ls │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── mix │ │ ├── CMakeLists.txt │ │ └── endian.cc │ ├── now │ │ ├── CMakeLists.txt │ │ └── now.cc │ ├── semver │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── tokencmd │ │ ├── CMakeLists.txt │ │ └── tokencmd.cc │ ├── win │ │ ├── CMakeLists.txt │ │ ├── pecoff.cc │ │ ├── pick.cc │ │ └── version.cc │ └── winutils │ │ ├── CMakeLists.txt │ │ ├── dirname.cc │ │ ├── env2.cc │ │ ├── envps.cc │ │ ├── exepath.cc │ │ ├── expandenv.cc │ │ ├── pathcat.cc │ │ ├── process.cc │ │ ├── which.cc │ │ └── writefile.cc └── utils │ ├── scanner │ ├── main.cc │ ├── scanner.cc │ └── scanner.hpp │ └── update-unicode │ ├── .gitignore │ └── update_unicode.sh └── blake2 ├── CMakeLists.txt ├── blake2-impl.h ├── blake2.h ├── blake2.lock ├── blake2b-ref.c ├── blake2bp-ref.c ├── blake2s-ref.c ├── blake2sp-ref.c ├── blake2xb-ref.c ├── blake2xs-ref.c ├── genkat-c.c ├── genkat-json.c └── makefile /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | SortIncludes: false 3 | ColumnLimit: 120 -------------------------------------------------------------------------------- /.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/.clang_complete -------------------------------------------------------------------------------- /.cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/.cmake-format.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/VersionFromVCS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/cmake/modules/VersionFromVCS.cmake -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Documents 2 | -------------------------------------------------------------------------------- /docs/images/caelum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/docs/images/caelum.png -------------------------------------------------------------------------------- /docs/images/hastyhex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/docs/images/hastyhex.png -------------------------------------------------------------------------------- /docs/images/kisasum-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/docs/images/kisasum-ui.png -------------------------------------------------------------------------------- /docs/images/krycekium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/docs/images/krycekium.png -------------------------------------------------------------------------------- /include/baulk/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/hash.hpp -------------------------------------------------------------------------------- /include/baulk/indicators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/indicators.hpp -------------------------------------------------------------------------------- /include/baulk/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/misc.hpp -------------------------------------------------------------------------------- /include/baulk/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/net.hpp -------------------------------------------------------------------------------- /include/baulk/net/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/net/client.hpp -------------------------------------------------------------------------------- /include/baulk/net/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/net/tcp.hpp -------------------------------------------------------------------------------- /include/baulk/net/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/baulk/net/types.hpp -------------------------------------------------------------------------------- /include/belautils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/belautils.hpp -------------------------------------------------------------------------------- /include/belautilsversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/belautilsversion.h -------------------------------------------------------------------------------- /include/belautilsversion.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/belautilsversion.h.cmake -------------------------------------------------------------------------------- /include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/json.hpp -------------------------------------------------------------------------------- /include/json.hpp.lock: -------------------------------------------------------------------------------- 1 | https://github.com/nlohmann/json 2 | version=3.12.0 3 | -------------------------------------------------------------------------------- /include/placement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/placement.hpp -------------------------------------------------------------------------------- /include/vfsenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/include/vfsenv.hpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ced/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ced/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/LICENSE -------------------------------------------------------------------------------- /lib/ced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/README.md -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det.cc -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det.h -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_fuzz_test.cc -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_generated_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_generated_tables.h -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_generated_tables2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_generated_tables2.h -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_hint_code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_hint_code.cc -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_hint_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_hint_code.h -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/compact_enc_det_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/compact_enc_det_unittest.cc -------------------------------------------------------------------------------- /lib/ced/compact_enc_det/detail_head_string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/compact_enc_det/detail_head_string.inc -------------------------------------------------------------------------------- /lib/ced/util/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/basictypes.h -------------------------------------------------------------------------------- /lib/ced/util/case_insensitive_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/case_insensitive_hash.h -------------------------------------------------------------------------------- /lib/ced/util/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/commandlineflags.h -------------------------------------------------------------------------------- /lib/ced/util/encodings/encodings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/encodings/encodings.cc -------------------------------------------------------------------------------- /lib/ced/util/encodings/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/encodings/encodings.h -------------------------------------------------------------------------------- /lib/ced/util/encodings/encodings.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/encodings/encodings.pb.h -------------------------------------------------------------------------------- /lib/ced/util/encodings/encodings_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/encodings/encodings_unittest.cc -------------------------------------------------------------------------------- /lib/ced/util/languages/languages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/languages/languages.cc -------------------------------------------------------------------------------- /lib/ced/util/languages/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/languages/languages.h -------------------------------------------------------------------------------- /lib/ced/util/languages/languages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/languages/languages.pb.h -------------------------------------------------------------------------------- /lib/ced/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/logging.h -------------------------------------------------------------------------------- /lib/ced/util/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/port.h -------------------------------------------------------------------------------- /lib/ced/util/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/string_util.h -------------------------------------------------------------------------------- /lib/ced/util/varsetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/util/varsetter.h -------------------------------------------------------------------------------- /lib/ced/version.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/ced/version.lock -------------------------------------------------------------------------------- /lib/hashlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/hashlib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/hashlib/blake2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/hashlib/blake2.hpp -------------------------------------------------------------------------------- /lib/hashlib/hashlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/hashlib/hashlib.cc -------------------------------------------------------------------------------- /lib/hashlib/k12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/hashlib/k12.hpp -------------------------------------------------------------------------------- /lib/hashlib/sumizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/hashlib/sumizer.hpp -------------------------------------------------------------------------------- /lib/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/misc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/misc/chardet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/misc/chardet.cc -------------------------------------------------------------------------------- /lib/misc/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/misc/hash.cc -------------------------------------------------------------------------------- /lib/misc/indicators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/misc/indicators.cc -------------------------------------------------------------------------------- /lib/winutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/winutils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/winutils/winui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/lib/winutils/winui.hpp -------------------------------------------------------------------------------- /lib/winutils/winutils.cc: -------------------------------------------------------------------------------- 1 | /// winutils 2 | -------------------------------------------------------------------------------- /script/bona-image-rename.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/script/bona-image-rename.bat -------------------------------------------------------------------------------- /script/bona-image-rename.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/script/bona-image-rename.ps1 -------------------------------------------------------------------------------- /test/replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/test/replace.cc -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bona/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bona/bona.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.cc -------------------------------------------------------------------------------- /tools/bona/bona.chardet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.chardet.cc -------------------------------------------------------------------------------- /tools/bona/bona.elf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.elf.cc -------------------------------------------------------------------------------- /tools/bona/bona.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.hpp -------------------------------------------------------------------------------- /tools/bona/bona.macho.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.macho.cc -------------------------------------------------------------------------------- /tools/bona/bona.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.manifest -------------------------------------------------------------------------------- /tools/bona/bona.pe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.pe.cc -------------------------------------------------------------------------------- /tools/bona/bona.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.rc -------------------------------------------------------------------------------- /tools/bona/bona.xml.cc: -------------------------------------------------------------------------------- 1 | // 2 | #include "writer.hpp" 3 | 4 | namespace bona { 5 | // 6 | } -------------------------------------------------------------------------------- /tools/bona/bona.zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/bona.zip.cc -------------------------------------------------------------------------------- /tools/bona/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/resource.h -------------------------------------------------------------------------------- /tools/bona/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/bona/writer.hpp -------------------------------------------------------------------------------- /tools/caelum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/CMakeLists.txt -------------------------------------------------------------------------------- /tools/caelum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/README.md -------------------------------------------------------------------------------- /tools/caelum/caelum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/caelum.cc -------------------------------------------------------------------------------- /tools/caelum/caelum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/caelum.hpp -------------------------------------------------------------------------------- /tools/caelum/caelum.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/caelum.ico -------------------------------------------------------------------------------- /tools/caelum/caelum.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/caelum.manifest -------------------------------------------------------------------------------- /tools/caelum/caelum.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/caelum.rc -------------------------------------------------------------------------------- /tools/caelum/pe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/pe.hpp -------------------------------------------------------------------------------- /tools/caelum/pecoff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/pecoff.cc -------------------------------------------------------------------------------- /tools/caelum/resolvelink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/resolvelink.cc -------------------------------------------------------------------------------- /tools/caelum/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/resource.h -------------------------------------------------------------------------------- /tools/caelum/shl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/shl.hpp -------------------------------------------------------------------------------- /tools/caelum/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/window.cc -------------------------------------------------------------------------------- /tools/caelum/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/caelum/window.hpp -------------------------------------------------------------------------------- /tools/hastyhex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/CMakeLists.txt -------------------------------------------------------------------------------- /tools/hastyhex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/README.md -------------------------------------------------------------------------------- /tools/hastyhex/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/UNLICENSE -------------------------------------------------------------------------------- /tools/hastyhex/hastyhex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/hastyhex.cc -------------------------------------------------------------------------------- /tools/hastyhex/hastyhex.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/hastyhex.manifest -------------------------------------------------------------------------------- /tools/hastyhex/hastyhex.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/hastyhex.rc -------------------------------------------------------------------------------- /tools/hastyhex/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/hastyhex/resource.h -------------------------------------------------------------------------------- /tools/kisasum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/CMakeLists.txt -------------------------------------------------------------------------------- /tools/kisasum/cli/fileutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/fileutils.hpp -------------------------------------------------------------------------------- /tools/kisasum/cli/indicators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/indicators.cc -------------------------------------------------------------------------------- /tools/kisasum/cli/indicators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/indicators.hpp -------------------------------------------------------------------------------- /tools/kisasum/cli/kisasum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/kisasum.cc -------------------------------------------------------------------------------- /tools/kisasum/cli/kisasum.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/kisasum.manifest -------------------------------------------------------------------------------- /tools/kisasum/cli/kisasum.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/kisasum.rc -------------------------------------------------------------------------------- /tools/kisasum/cli/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/cli/resource.h -------------------------------------------------------------------------------- /tools/kisasum/ui/kisasum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/kisasum.cc -------------------------------------------------------------------------------- /tools/kisasum/ui/kisasum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/kisasum.hpp -------------------------------------------------------------------------------- /tools/kisasum/ui/kisasum.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/kisasum.manifest -------------------------------------------------------------------------------- /tools/kisasum/ui/kisasum.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/kisasum.rc -------------------------------------------------------------------------------- /tools/kisasum/ui/kisasumutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/kisasumutils.cc -------------------------------------------------------------------------------- /tools/kisasum/ui/res/ic_fluent_copy_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/res/ic_fluent_copy_24_regular.svg -------------------------------------------------------------------------------- /tools/kisasum/ui/res/ic_fluent_copy_image_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/res/ic_fluent_copy_image_24_regular.svg -------------------------------------------------------------------------------- /tools/kisasum/ui/res/kisasum.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/res/kisasum.ico -------------------------------------------------------------------------------- /tools/kisasum/ui/res/kisasum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/res/kisasum.svg -------------------------------------------------------------------------------- /tools/kisasum/ui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/resource.h -------------------------------------------------------------------------------- /tools/kisasum/ui/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/ui.cc -------------------------------------------------------------------------------- /tools/kisasum/ui/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/kisasum/ui/ui.hpp -------------------------------------------------------------------------------- /tools/krycekium/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/CMakeLists.txt -------------------------------------------------------------------------------- /tools/krycekium/executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/executor.cc -------------------------------------------------------------------------------- /tools/krycekium/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/executor.hpp -------------------------------------------------------------------------------- /tools/krycekium/km-cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/km-cli.cc -------------------------------------------------------------------------------- /tools/krycekium/kmutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/kmutils.cc -------------------------------------------------------------------------------- /tools/krycekium/kmutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/kmutils.hpp -------------------------------------------------------------------------------- /tools/krycekium/krycekium.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/krycekium.cc -------------------------------------------------------------------------------- /tools/krycekium/krycekium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/krycekium.hpp -------------------------------------------------------------------------------- /tools/krycekium/krycekium.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/krycekium.ico -------------------------------------------------------------------------------- /tools/krycekium/krycekium.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/krycekium.manifest -------------------------------------------------------------------------------- /tools/krycekium/krycekium.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/krycekium.rc -------------------------------------------------------------------------------- /tools/krycekium/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/resource.h -------------------------------------------------------------------------------- /tools/krycekium/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/window.cc -------------------------------------------------------------------------------- /tools/krycekium/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/tools/krycekium/window.hpp -------------------------------------------------------------------------------- /vendor/KangarooTwelve.lock: -------------------------------------------------------------------------------- 1 | https://github.com/XKCP/K12.git 2 | e7e233347e56a7d3d96c59630c7614c7dc5695e4 -------------------------------------------------------------------------------- /vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-ARMv8Asha3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-ARMv8Asha3.S -------------------------------------------------------------------------------- /vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-opt64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/ARMv8Asha3/KeccakP-1600-opt64.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Inplace32BI/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Inplace32BI/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Inplace32BI/KeccakP-1600-inplace32BI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Inplace32BI/KeccakP-1600-inplace32BI.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/KangarooTwelve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/KangarooTwelve.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/KangarooTwelve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/KangarooTwelve.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX2.s -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX512-plainC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX512-plainC.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX512.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-AVX512.s -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-opt64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-opt64.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-runtimeDispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-runtimeDispatch.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-AVX2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-AVX2.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-AVX512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-AVX512.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-SSSE3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Optimized64/KeccakP-1600-timesN-SSSE3.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Plain64/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Plain64/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/Plain64/KeccakP-1600-plain64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/Plain64/KeccakP-1600-plain64.c -------------------------------------------------------------------------------- /vendor/KangarooTwelve/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/align.h -------------------------------------------------------------------------------- /vendor/KangarooTwelve/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/KangarooTwelve/brg_endian.h -------------------------------------------------------------------------------- /vendor/README.md: -------------------------------------------------------------------------------- 1 | # Vendor 2 | -------------------------------------------------------------------------------- /vendor/bela.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela.lock -------------------------------------------------------------------------------- /vendor/bela/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | SortIncludes: false 3 | ColumnLimit: 120 4 | -------------------------------------------------------------------------------- /vendor/bela/.clang_complete: -------------------------------------------------------------------------------- 1 | -Iinclude 2 | -------------------------------------------------------------------------------- /vendor/bela/.cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/.cmake-format.json -------------------------------------------------------------------------------- /vendor/bela/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/.gitignore -------------------------------------------------------------------------------- /vendor/bela/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/CMakeSettings.json -------------------------------------------------------------------------------- /vendor/bela/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/LICENSE -------------------------------------------------------------------------------- /vendor/bela/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/README.md -------------------------------------------------------------------------------- /vendor/bela/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/build.bat -------------------------------------------------------------------------------- /vendor/bela/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/build.ps1 -------------------------------------------------------------------------------- /vendor/bela/clang-tidy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/clang-tidy.bat -------------------------------------------------------------------------------- /vendor/bela/clang-tidy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/clang-tidy.ps1 -------------------------------------------------------------------------------- /vendor/bela/compile_flags.txt: -------------------------------------------------------------------------------- 1 | -Wall 2 | -Wextra 3 | -pedantic 4 | -std=c++17 5 | -Iinclude -------------------------------------------------------------------------------- /vendor/bela/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/docs/README.md -------------------------------------------------------------------------------- /vendor/bela/docs/en-US/path.md: -------------------------------------------------------------------------------- 1 | # Path function 2 | -------------------------------------------------------------------------------- /vendor/bela/docs/zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/docs/zh-CN/README.md -------------------------------------------------------------------------------- /vendor/bela/docs/zh-CN/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/docs/zh-CN/path.md -------------------------------------------------------------------------------- /vendor/bela/docs/zh-CN/strcat.md: -------------------------------------------------------------------------------- 1 | # StringCat 和 StrAppend 函数 2 | -------------------------------------------------------------------------------- /vendor/bela/docs/zh-CN/strformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/docs/zh-CN/strformat.md -------------------------------------------------------------------------------- /vendor/bela/external/charconv/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/.clang-format -------------------------------------------------------------------------------- /vendor/bela/external/charconv/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/VERSION -------------------------------------------------------------------------------- /vendor/bela/external/charconv/charconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/charconv -------------------------------------------------------------------------------- /vendor/bela/external/charconv/xcharconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/xcharconv.h -------------------------------------------------------------------------------- /vendor/bela/external/charconv/xcharconv_ryu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/xcharconv_ryu.h -------------------------------------------------------------------------------- /vendor/bela/external/charconv/xcharconv_ryu_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/xcharconv_ryu_tables.h -------------------------------------------------------------------------------- /vendor/bela/external/charconv/xcharconv_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/charconv/xcharconv_tables.h -------------------------------------------------------------------------------- /vendor/bela/external/dtoa_milo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/dtoa_milo.h -------------------------------------------------------------------------------- /vendor/bela/external/escapeargv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/escapeargv.c -------------------------------------------------------------------------------- /vendor/bela/external/ntimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/ntimage.h -------------------------------------------------------------------------------- /vendor/bela/external/ntimage.h.txt: -------------------------------------------------------------------------------- 1 | 10.0.22000.1 -------------------------------------------------------------------------------- /vendor/bela/external/semver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/semver.hpp -------------------------------------------------------------------------------- /vendor/bela/external/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/unicode.cc -------------------------------------------------------------------------------- /vendor/bela/external/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/external/unicode.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__basal/basal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__basal/basal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__charconv/tables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__charconv/tables.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__charconv/to_chars_base_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__charconv/to_chars_base_10.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__format/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__format/args.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/LICENSE -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/VERSION -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/btree.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/meminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/meminfo.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_base.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_bits.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_config.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_dump.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_fwd_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_fwd_decl.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__phmap/phmap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__phmap/phmap_utils.h -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/int128_have_intrinsic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/int128_have_intrinsic.inc -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/int128_no_intrinsic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/int128_no_intrinsic.inc -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/str_join_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/str_join_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/str_join_narrow_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/str_join_narrow_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/str_split_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/str_split_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/str_split_narrow_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/str_split_narrow_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__strings/string_cat_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__strings/string_cat_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__unicode/unicode-width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__unicode/unicode-width.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/__windows/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/__windows/image.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/ascii.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/base.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/btree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/btree.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/buffer.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/bufio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/bufio.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/bytes_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/bytes_view.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/charconv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/charconv.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/city.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/city.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/codecvt.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/color.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/comutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/comutils.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/datetime.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/endian.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/env.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/escapeargv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/escapeargv.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/escaping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/escaping.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/fmt.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/fnmatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/fnmatch.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/fs.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/hash.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/int128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/int128.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/io.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/macros.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/match.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/numbers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/numbers.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/os.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/parseargv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/parseargv.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/path.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/pe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/pe.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/phmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/phmap.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/picker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/picker.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/process.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/repasepoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/repasepoint.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/semver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/semver.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/simulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/simulator.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/static_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/static_string.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_cat.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_join.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_join_narrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_join_narrow.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_replace.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_split.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/str_split_narrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/str_split_narrow.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/strings.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/strip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/strip.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/subsitute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/subsitute.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/terminal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/terminal.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/time.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/tokenizecmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/tokenizecmdline.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/types.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/und.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/und.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/unicode.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/utility.hpp -------------------------------------------------------------------------------- /vendor/bela/include/bela/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/bela/win32.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/DynamicTags.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/DynamicTags.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/AArch64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/AArch64.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/AMDGPU.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/AMDGPU.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/ARC.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/ARC.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/ARM.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/ARM.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/AVR.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/AVR.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/BPF.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/BPF.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/CSKY.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/CSKY.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/Hexagon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/Hexagon.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/Lanai.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/Lanai.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/LoongArch.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/LoongArch.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/M68k.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/M68k.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/MSP430.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/MSP430.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/Mips.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/Mips.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/PowerPC.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/PowerPC.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/PowerPC64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/PowerPC64.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/RISCV.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/RISCV.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/Sparc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/Sparc.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/SystemZ.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/SystemZ.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/VE.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/VE.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/i386.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/i386.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/ELFRelocs/x86_64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/ELFRelocs/x86_64.def -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/elf.h -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/macho.h -------------------------------------------------------------------------------- /vendor/bela/include/hazel/details/version.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/details/version.lock -------------------------------------------------------------------------------- /vendor/bela/include/hazel/elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/elf.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/fs.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/hazel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/hazel.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/macho.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/macho.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/types.hpp -------------------------------------------------------------------------------- /vendor/bela/include/hazel/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/include/hazel/zip.hpp -------------------------------------------------------------------------------- /vendor/bela/res/1903.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/res/1903.manifest -------------------------------------------------------------------------------- /vendor/bela/res/longPathAware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/res/longPathAware.manifest -------------------------------------------------------------------------------- /vendor/bela/res/utf8activeCodePage.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/res/utf8activeCodePage.manifest -------------------------------------------------------------------------------- /vendor/bela/res/win10.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/res/win10.manifest -------------------------------------------------------------------------------- /vendor/bela/src/bela/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/bela/__charconv/charconv_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__charconv/charconv_float.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/__charconv/ryu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__charconv/ryu.hpp -------------------------------------------------------------------------------- /vendor/bela/src/bela/__charconv/ryu_tables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__charconv/ryu_tables.hpp -------------------------------------------------------------------------------- /vendor/bela/src/bela/__fnmatch/fnmatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__fnmatch/fnmatch.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/__fnmatch/fnmatch_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__fnmatch/fnmatch_internal.hpp -------------------------------------------------------------------------------- /vendor/bela/src/bela/__format/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__format/fmt.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/__format/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/__format/writer.hpp -------------------------------------------------------------------------------- /vendor/bela/src/bela/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/ascii.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/city.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/city.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/codecvt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/codecvt.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/errno.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/errno.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/escaping.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/int128.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/match.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/numbers.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/str_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/str_cat.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/str_replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/str_replace.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/str_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/str_split.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/str_split_narrow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/str_split_narrow.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/subsitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/subsitute.cc -------------------------------------------------------------------------------- /vendor/bela/src/bela/terminal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/bela/terminal.cc -------------------------------------------------------------------------------- /vendor/bela/src/belahash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belahash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/README.md -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3.lock -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/.gitignore: -------------------------------------------------------------------------------- 1 | blake3 2 | example 3 | build/ 4 | *.o 5 | 6 | CMakeUserPresets.json 7 | -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/CMakePresets.json -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/Makefile.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/Makefile.testing -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/README.md -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3-config.cmake.in -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3.h -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx2.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_unix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_unix.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_windows_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_windows_gnu.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_windows_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx2_x86-64_windows_msvc.asm -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx512.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_unix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_unix.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_windows_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_windows_gnu.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_windows_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_avx512_x86-64_windows_msvc.asm -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_dispatch.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_impl.h -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_neon.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_portable.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse2.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_unix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_unix.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_windows_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_windows_gnu.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_windows_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse2_x86-64_windows_msvc.asm -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse41.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_unix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_unix.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_windows_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_windows_gnu.S -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_windows_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/blake3_sse41_x86-64_windows_msvc.asm -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/example.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/libblake3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/libblake3.pc.in -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/main.c -------------------------------------------------------------------------------- /vendor/bela/src/belahash/blake3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/blake3/test.py -------------------------------------------------------------------------------- /vendor/bela/src/belahash/hashinternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/hashinternal.hpp -------------------------------------------------------------------------------- /vendor/bela/src/belahash/sha256-intel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/sha256-intel.cc -------------------------------------------------------------------------------- /vendor/bela/src/belahash/sha256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/sha256.cc -------------------------------------------------------------------------------- /vendor/bela/src/belahash/sha3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/sha3.cc -------------------------------------------------------------------------------- /vendor/bela/src/belahash/sha512.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/sha512.cc -------------------------------------------------------------------------------- /vendor/bela/src/belahash/sm3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belahash/sm3.cc -------------------------------------------------------------------------------- /vendor/bela/src/belashl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belashl/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belashl/picker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belashl/picker.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belatime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/README.md -------------------------------------------------------------------------------- /vendor/bela/src/belatime/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/clock.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/datetime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/datetime.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/dos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/dos.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/duration.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/format.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/time.cc -------------------------------------------------------------------------------- /vendor/bela/src/belatime/timezone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belatime/timezone.cc -------------------------------------------------------------------------------- /vendor/bela/src/belaund/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/VERSION: -------------------------------------------------------------------------------- 1 | llvm-project:aa0f3343a60c6132d9f6adfb8f62234a95519918 -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/Demangle.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/DemangleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/DemangleConfig.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/ItaniumDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/ItaniumDemangle.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/ItaniumNodes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/ItaniumNodes.def -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/MicrosoftDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/MicrosoftDemangle.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/README.txt -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/StringViewExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/StringViewExtras.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/include/llvm/Demangle/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/include/llvm/Demangle/Utility.h -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/DLangDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/DLangDemangle.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/Demangle.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/ItaniumDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/ItaniumDemangle.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/MicrosoftDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/MicrosoftDemangle.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belaund/llvm/lib/Demangle/RustDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belaund/llvm/lib/Demangle/RustDemangle.cpp -------------------------------------------------------------------------------- /vendor/bela/src/belawin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/belawin/README.md: -------------------------------------------------------------------------------- 1 | # Bela Windows OS Feature library -------------------------------------------------------------------------------- /vendor/bela/src/belawin/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/env.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/fs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/fs.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/io.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/path.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/README.md -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/delayimports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/delayimports.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/dotnet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/dotnet.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/exports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/exports.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/file.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/images/pe32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/images/pe32.svg -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/imports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/imports.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/internal.hpp -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/overlay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/overlay.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/resource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/resource.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/rva.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/rva.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/searcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/searcher.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/section.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/section.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/string.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/symbol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/symbol.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/pe/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/pe/version.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/process.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/realpath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/realpath.cc -------------------------------------------------------------------------------- /vendor/bela/src/belawin/simulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/belawin/simulator.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/README.md -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/dynamic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/dynamic.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/elf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/elf.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/gnu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/gnu.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/images/ELF_Executable_and_Linkable_Format_diagram_by_Ange_Albertini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/images/ELF_Executable_and_Linkable_Format_diagram_by_Ange_Albertini.png -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/images/Elf-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/images/Elf-layout.svg -------------------------------------------------------------------------------- /vendor/bela/src/hazel/elf/symbol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/elf/symbol.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/fs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/fs.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/hazel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/hazel.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/archive.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/binexeobj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/binexeobj.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/docs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/docs.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/docs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/docs.hpp -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/font.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/git.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/hazelinc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/hazelinc.hpp -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/image.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/media.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/media.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/shebang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/shebang.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/shl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/shl.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/shl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/shl.hpp -------------------------------------------------------------------------------- /vendor/bela/src/hazel/ina/text.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/ina/text.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/macho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/macho/README.md -------------------------------------------------------------------------------- /vendor/bela/src/hazel/macho/fat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/macho/fat.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/macho/images/hello-macho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/macho/images/hello-macho.jpg -------------------------------------------------------------------------------- /vendor/bela/src/hazel/macho/images/micro-macho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/macho/images/micro-macho.jpg -------------------------------------------------------------------------------- /vendor/bela/src/hazel/macho/macho.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/macho/macho.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/mime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/mime.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/README.md: -------------------------------------------------------------------------------- 1 | # ZIP 2 | 3 | ![](./images/ZIP-64_Internal_Layout.svg) 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/decompress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/decompress.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/filemode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/filemode.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/images/ZIP-64_Internal_Layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/images/ZIP-64_Internal_Layout.svg -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/images/winzipaes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/images/winzipaes.md -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/zip.cc -------------------------------------------------------------------------------- /vendor/bela/src/hazel/zip/zipinternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/src/hazel/zip/zipinternal.hpp -------------------------------------------------------------------------------- /vendor/bela/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/appexeclink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/appexeclink/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/appexeclink/afunix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/appexeclink/afunix.c -------------------------------------------------------------------------------- /vendor/bela/test/appexeclink/appexeclink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/appexeclink/appexeclink.cc -------------------------------------------------------------------------------- /vendor/bela/test/appexeclink/fv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/appexeclink/fv.cc -------------------------------------------------------------------------------- /vendor/bela/test/appexeclink/rptest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/appexeclink/rptest.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/base/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/ascii.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/base.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/cityhash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/cityhash.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/constexpr_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/constexpr_base.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/delfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/delfile.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/fnmatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/fnmatch.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/iota.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/iota.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/startswith.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/startswith.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/static_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/static_string.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/strings_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/strings_cat.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/strsplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/strsplit.cc -------------------------------------------------------------------------------- /vendor/bela/test/base/unicodewidth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/base/unicodewidth.hpp -------------------------------------------------------------------------------- /vendor/bela/test/binview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/binview/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/binview/elfview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/binview/elfview.cc -------------------------------------------------------------------------------- /vendor/bela/test/binview/machoview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/binview/machoview.cc -------------------------------------------------------------------------------- /vendor/bela/test/color/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/color/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/color/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/color/main.cc -------------------------------------------------------------------------------- /vendor/bela/test/escape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escape/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/escape/escape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escape/escape.cc -------------------------------------------------------------------------------- /vendor/bela/test/escape/settitle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escape/settitle.cc -------------------------------------------------------------------------------- /vendor/bela/test/escapeargv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escapeargv/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/escapeargv/eva.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escapeargv/eva.cc -------------------------------------------------------------------------------- /vendor/bela/test/escapeargv/evw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/escapeargv/evw.cc -------------------------------------------------------------------------------- /vendor/bela/test/filehash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/filehash/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/filehash/filehash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/filehash/filehash.cc -------------------------------------------------------------------------------- /vendor/bela/test/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/fmt/charconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/charconv.cc -------------------------------------------------------------------------------- /vendor/bela/test/fmt/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/main.cc -------------------------------------------------------------------------------- /vendor/bela/test/fmt/strjoin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/strjoin.cc -------------------------------------------------------------------------------- /vendor/bela/test/fmt/ucwidth-wt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/ucwidth-wt.hpp -------------------------------------------------------------------------------- /vendor/bela/test/fmt/ucwidth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/ucwidth.cc -------------------------------------------------------------------------------- /vendor/bela/test/fmt/unicode-width.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/fmt/unicode-width.cc -------------------------------------------------------------------------------- /vendor/bela/test/hazel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/hazel/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/hazel/shebang-gen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/hazel/shebang-gen.cc -------------------------------------------------------------------------------- /vendor/bela/test/hazel/zipview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/hazel/zipview.cc -------------------------------------------------------------------------------- /vendor/bela/test/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/io/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/io/readall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/io/readall.cc -------------------------------------------------------------------------------- /vendor/bela/test/ls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/ls/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/ls/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/ls/main.cc -------------------------------------------------------------------------------- /vendor/bela/test/mix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/mix/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/mix/endian.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/mix/endian.cc -------------------------------------------------------------------------------- /vendor/bela/test/now/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/now/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/now/now.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/now/now.cc -------------------------------------------------------------------------------- /vendor/bela/test/semver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/semver/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/semver/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/semver/main.cc -------------------------------------------------------------------------------- /vendor/bela/test/tokencmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/tokencmd/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/tokencmd/tokencmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/tokencmd/tokencmd.cc -------------------------------------------------------------------------------- /vendor/bela/test/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/win/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/win/pecoff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/win/pecoff.cc -------------------------------------------------------------------------------- /vendor/bela/test/win/pick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/win/pick.cc -------------------------------------------------------------------------------- /vendor/bela/test/win/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/win/version.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/bela/test/winutils/dirname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/dirname.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/env2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/env2.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/envps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/envps.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/exepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/exepath.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/expandenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/expandenv.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/pathcat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/pathcat.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/process.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/which.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/which.cc -------------------------------------------------------------------------------- /vendor/bela/test/winutils/writefile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/test/winutils/writefile.cc -------------------------------------------------------------------------------- /vendor/bela/utils/scanner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/utils/scanner/main.cc -------------------------------------------------------------------------------- /vendor/bela/utils/scanner/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/utils/scanner/scanner.cc -------------------------------------------------------------------------------- /vendor/bela/utils/scanner/scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/utils/scanner/scanner.hpp -------------------------------------------------------------------------------- /vendor/bela/utils/update-unicode/.gitignore: -------------------------------------------------------------------------------- 1 | uniset/ 2 | UnicodeData.txt 3 | EastAsianWidth.txt -------------------------------------------------------------------------------- /vendor/bela/utils/update-unicode/update_unicode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/bela/utils/update-unicode/update_unicode.sh -------------------------------------------------------------------------------- /vendor/blake2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2-impl.h -------------------------------------------------------------------------------- /vendor/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2.h -------------------------------------------------------------------------------- /vendor/blake2/blake2.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2.lock -------------------------------------------------------------------------------- /vendor/blake2/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2b-ref.c -------------------------------------------------------------------------------- /vendor/blake2/blake2bp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2bp-ref.c -------------------------------------------------------------------------------- /vendor/blake2/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2s-ref.c -------------------------------------------------------------------------------- /vendor/blake2/blake2sp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2sp-ref.c -------------------------------------------------------------------------------- /vendor/blake2/blake2xb-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2xb-ref.c -------------------------------------------------------------------------------- /vendor/blake2/blake2xs-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/blake2xs-ref.c -------------------------------------------------------------------------------- /vendor/blake2/genkat-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/genkat-c.c -------------------------------------------------------------------------------- /vendor/blake2/genkat-json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/genkat-json.c -------------------------------------------------------------------------------- /vendor/blake2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcharlie/BelaUtils/HEAD/vendor/blake2/makefile --------------------------------------------------------------------------------