Commit 2c8aa8ef authored by Max Kellermann's avatar Max Kellermann

client: reorder function declarations

Change the order of function declarations in client.h, to make it well arranged and readable.
parent e743d71b
......@@ -22,11 +22,12 @@
#include "os_compat.h"
void client_manager_init(void);
void client_new(int fd, const struct sockaddr *addr);
void client_manager_deinit(void);
int client_manager_io(void);
void client_manager_expire(void);
int client_print(int fd, const char *buffer, size_t len);
int client_manager_io(void);
void client_new(int fd, const struct sockaddr *addr);
int client_print(int fd, const char *buffer, size_t len);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment