#ifndef CLIENT_H
#define CLIENT_H
struct client {
int fd;
/* command iterators. while non-NULL, they've increased the
struct's refcount so it won't be deleted during iteration */
unsigned int iter_count;
};
void clients_destroy_all(void);
#endif