jsfw/client.h

9 lines
127 B
C
Raw Normal View History

2022-08-29 18:06:25 -05:00
// vi: set ft=c
2022-08-29 17:27:03 -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 11:45:53 -05:00
void client_run(char * address, uint16_t port);
2022-08-29 17:27:03 -05:00
#endif