dwm/patch/statuscmd.c

17 lines
317 B
C
Raw Normal View History

2020-04-13 14:59:58 +02:00
static char rawstext[256];
static const char statusexport[] = "export BUTTON=-;";
static int statuscmdn;
static int lastbutton;
void
copyvalidchars(char *text, char *rawtext)
{
int i = -1, j = 0;
while (rawtext[++i]) {
if ((unsigned char)rawtext[i] >= ' ') {
text[j++] = rawtext[i];
}
}
text[j] = '\0';
}