9 lines
207 B
C++
9 lines
207 B
C++
|
#include "util/ustring_clen.hpp"
|
||
|
|
||
|
int ustring_clen(const Glib::ustring &str){
|
||
|
int total = 0;
|
||
|
for (auto i = str.begin(); i != str.end(); ++i) {
|
||
|
total += g_unichar_iswide(*i) + 1;
|
||
|
}
|
||
|
return total;
|
||
|
}
|