mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-09 01:10:26 +00:00
15 lines
242 B
C
15 lines
242 B
C
|
|
#if !PERTAG_PATCH
|
|
static Client *prevzoom = NULL;
|
|
#endif // PERTAG_PATCH
|
|
|
|
Client *
|
|
findbefore(Client *c) {
|
|
Client *p;
|
|
if (!c || c == c->mon->clients)
|
|
return NULL;
|
|
for (p = c->mon->clients; p && p->next != c; p = p->next);
|
|
return p;
|
|
}
|
|
|