mirror of
https://github.com/Alexays/Waybar.git
synced 2026-03-31 03:43:39 +00:00
10 lines
187 B
C++
10 lines
187 B
C++
#include "util/ustring_clen.hpp"
|
|
|
|
int ustring_clen(const Glib::ustring& str) {
|
|
int total = 0;
|
|
for (unsigned int i : str) {
|
|
total += g_unichar_iswide(i) + 1;
|
|
}
|
|
return total;
|
|
}
|