mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-16 21:28:03 +00:00
27 lines
405 B
C
27 lines
405 B
C
int
|
|
textw_wosc(char *s)
|
|
{
|
|
char *ts = s;
|
|
char *tp = s;
|
|
int sw = 0;
|
|
char ctmp;
|
|
while (1) {
|
|
if ((unsigned int)*ts > LENGTH(colors)) {
|
|
ts++;
|
|
continue;
|
|
}
|
|
ctmp = *ts;
|
|
*ts = '\0';
|
|
#if BAR_PANGO_PATCH
|
|
sw += drw_font_getwidth(drw, tp, True);
|
|
#else
|
|
sw += drw_fontset_getwidth(drw, tp);
|
|
#endif // BAR_PANGO_PATCH
|
|
*ts = ctmp;
|
|
if (ctmp == '\0')
|
|
break;
|
|
tp = ++ts;
|
|
}
|
|
|
|
return sw;
|
|
} |