Files
WaryasSWHE/utils.hpp

9 lines
240 B
C++
Raw Normal View History

2025-11-26 01:46:55 +01:00
#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 );
}