2022-08-30 17:54:56 -05:00
|
|
|
// vi:ft=c
|
2022-08-31 11:54:14 -05:00
|
|
|
#ifndef CLIENT_H_
|
|
|
|
#define CLIENT_H_
|
2022-08-30 11:45:53 -05:00
|
|
|
#include <stdint.h>
|
2022-08-29 17:27:03 -05:00
|
|
|
|
2022-08-30 12:08:36 -05:00
|
|
|
void client_run(char *address, uint16_t port);
|
2022-08-29 17:27:03 -05:00
|
|
|
|
|
|
|
#endif
|