Add files via upload

This commit is contained in:
TALON SCHMELER
2025-11-26 01:46:55 +01:00
committed by GitHub
commit 24d0444837
7 changed files with 2396 additions and 0 deletions

9
utils.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <cstdint>
namespace utils
{
bool DevicePathToDosPath( const char *devicePath, char *dosPath, size_t dosPathSize );
void swap( const char** a, const char** b );
void shuffle( const char** arr, size_t n );
}