On 9/5/06, Sander van Dijk <a.h.vandijk_AT_gmail.com> wrote:
> for(c = getnext(clients); c; c = getnext(c->next))
Or:
for(c = clients; c; c = c->next)
if one wants to catch 'm all (not just the currently visible ones).
Gr. Sander.
Received on Tue Sep 05 2006 - 23:29:20 UTC
This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:30:55 UTC