mirror of
https://github.com/waryas/WaryasSWHE.git
synced 2025-12-13 13:23:08 +08:00
9 lines
240 B
C++
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 );
|
|
} |