Files
WaryasSWHE/utils.hpp
2025-11-26 01:46:55 +01:00

9 lines
240 B
C++

#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 );
}