mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
11 lines
165 B
C++
11 lines
165 B
C++
#ifndef STRING_UTILS_H
|
|
#define STRING_UTILS_H
|
|
|
|
class StringUtils
|
|
{
|
|
public:
|
|
static const char* wchar_to_char(const wchar_t* pwchar);
|
|
};
|
|
|
|
#endif // STRING_UTILS_H
|