mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 23:14:54 -06:00
12 lines
277 B
C
Executable File
12 lines
277 B
C
Executable File
// Common/UTFConvert.h
|
|
|
|
#ifndef __COMMON_UTFCONVERT_H
|
|
#define __COMMON_UTFCONVERT_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString);
|
|
bool ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString);
|
|
|
|
#endif
|