Files
itgmania212121/src/RageUtil_CharConversions.h
T

13 lines
510 B
C
Raw Normal View History

2005-02-13 03:50:51 +00:00
/* ConvertString - Convert a string to UTF-8. */
2003-05-21 00:08:58 +00:00
#ifndef RAGEUTIL_CHAR_CONVERSIONS_H
#define RAGEUTIL_CHAR_CONVERSIONS_H
/* Convert a string to UTF-8 from the first possible encoding in the given comma-
* separated list of encodings. The only valid strings are "japanese" and "korean".
* Return true if the conversion was successful (or a no-op). Return false and
* leave the string unchanged if the conversion was unsuccessful. */
2006-09-19 04:44:59 +00:00
bool ConvertString( RString &str, const RString &encodings );
2003-05-21 00:08:58 +00:00
#endif