mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
19 lines
577 B
C++
19 lines
577 B
C++
#ifndef ARABICA_UTILS_ISO88591_UTF8_H
|
|
#define ARABICA_UTILS_ISO88591_UTF8_H
|
|
|
|
#include <locale>
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace Internal
|
|
{
|
|
|
|
std::codecvt_base::result iso88591_2_utf8(const char* from, const char* from_end, const char*& from_next,
|
|
char* to, char* to_limit, char*& to_next);
|
|
|
|
std::codecvt_base::result utf8_2_iso88591(const char* from, const char* from_end, const char*& from_next,
|
|
char* to, char* to_limit, char*& to_next);
|
|
} // namespace Internal
|
|
} // namespace Arabica
|
|
|
|
#endif
|