Files
easy7zip/CPP/Common/UTFConvert.h
Igor Pavlov f08f4dcc3c 9.34
2016-05-28 00:16:51 +01:00

13 lines
315 B
C

// Common/UTFConvert.h
#ifndef __COMMON_UTF_CONVERT_H
#define __COMMON_UTF_CONVERT_H
#include "MyString.h"
bool CheckUTF8(const char *src) throw();
bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString);
bool ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString);
#endif