vkdoom_m/src/common/filesystem/source/unicode.h
Christoph Oelckers c95d611c1f fixed ibm437_to_utf8
2023-12-12 18:07:31 +01:00

12 lines
296 B
C++

#pragma once
#include <stdint.h>
#include <vector>
namespace FileSys {
void utf16_to_utf8(const unsigned short* in, std::vector<char>& buffer);
void ibm437_to_utf8(const char* in, std::vector<char>& buffer);
char *tolower_normalize(const char *str);
bool unicode_validate(const char* str);
}