2021-01-31 19:53:53 +00:00
|
|
|
#include "util/ustring_clen.hpp"
|
|
|
|
|
2022-04-06 06:37:19 +00:00
|
|
|
int ustring_clen(const Glib::ustring &str) {
|
2021-01-31 19:53:53 +00:00
|
|
|
int total = 0;
|
|
|
|
for (auto i = str.begin(); i != str.end(); ++i) {
|
|
|
|
total += g_unichar_iswide(*i) + 1;
|
|
|
|
}
|
|
|
|
return total;
|
|
|
|
}
|