move client_find down
This commit is contained in:
30
client.c
30
client.c
@@ -42,21 +42,6 @@ static int client_inbound(struct client_ctx *, int, int);
|
|||||||
|
|
||||||
struct client_ctx *curcc = NULL;
|
struct client_ctx *curcc = NULL;
|
||||||
|
|
||||||
struct client_ctx *
|
|
||||||
client_find(Window win)
|
|
||||||
{
|
|
||||||
struct screen_ctx *sc;
|
|
||||||
struct client_ctx *cc;
|
|
||||||
|
|
||||||
TAILQ_FOREACH(sc, &Screenq, entry) {
|
|
||||||
TAILQ_FOREACH(cc, &sc->clientq, entry) {
|
|
||||||
if (cc->win == win)
|
|
||||||
return(cc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return(NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct client_ctx *
|
struct client_ctx *
|
||||||
client_init(Window win, struct screen_ctx *sc)
|
client_init(Window win, struct screen_ctx *sc)
|
||||||
{
|
{
|
||||||
@@ -142,6 +127,21 @@ client_init(Window win, struct screen_ctx *sc)
|
|||||||
return(cc);
|
return(cc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct client_ctx *
|
||||||
|
client_find(Window win)
|
||||||
|
{
|
||||||
|
struct screen_ctx *sc;
|
||||||
|
struct client_ctx *cc;
|
||||||
|
|
||||||
|
TAILQ_FOREACH(sc, &Screenq, entry) {
|
||||||
|
TAILQ_FOREACH(cc, &sc->clientq, entry) {
|
||||||
|
if (cc->win == win)
|
||||||
|
return(cc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
client_delete(struct client_ctx *cc)
|
client_delete(struct client_ctx *cc)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user