summaryrefslogtreecommitdiffstats
path: root/src/ipc/client.h
blob: a5936a69e10324d803fa0d543191a9b285844c10 (plain)
1
2
3
4
5
6
7
8
9
#ifndef CLIENT_H
#define CLIENT_H

struct client *client_create(int fd);
void client_destroy(struct client **client);

void clients_destroy_all(void);

#endif