Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

12 lines
240 B

  1. #if !PERTAG_PATCH
  2. static Client *prevzoom = NULL;
  3. #endif // PERTAG_PATCH
  4. Client *
  5. findbefore(Client *c) {
  6. Client *p;
  7. if (!c || c == c->mon->clients)
  8. return NULL;
  9. for (p = c->mon->clients; p && p->next != c; p = p->next);
  10. return p;
  11. }