From da0265a34cd310e4bd42a679c6859b1a6a33b0ea Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Sun, 23 Nov 2008 16:33:24 +0100 Subject: [PATCH] client: Remove client_pertag function --- src/client.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/client.c b/src/client.c index dc2c2da..adec3a0 100644 --- a/src/client.c +++ b/src/client.c @@ -32,24 +32,6 @@ #include "wmfs.h" -/** Calcule how many of client there are - * Per tag - * \param tag Tag number - * \return Number of client -*/ -int -client_pertag(int tag) -{ - Client *c; - int i = 0; - - for(c = clients; c; c = c->next) - if(c->tag == tag) - ++i; - - return i; -} - /** Attach client in the client chain * \param c Client pointer */