- added some logic to 'try' to figure out when to render font test right to left and when not to

This commit is contained in:
Mark Vejvoda
2011-06-09 05:54:04 +00:00
parent bc2c59a82a
commit fc3f5bbfa0
8 changed files with 202 additions and 28 deletions

View File

@@ -610,6 +610,11 @@ namespace Shared { namespace Util {
};
void strrev(char *p);
void strrev_utf8(char *p);
void strrev_utf8(std::string &p);
bool is_string_all_ascii(std::string str);
}} // namespace TA3D
#endif // _SHARED_UTIL_W_STRING_H__