mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
9 lines
208 B
C++
9 lines
208 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;
|
|
} |