You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
242 B
15 lines
242 B
3 years ago
|
|
||
|
#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;
|
||
|
}
|
||
|
|