mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-27 05:47:37 -06:00
9 lines
123 B
C
9 lines
123 B
C
// vi:ft=c
|
|
#ifndef CLIENT_H_
|
|
#define CLIENT_H_
|
|
#include <stdint.h>
|
|
|
|
void client_run(char *address, uint16_t port);
|
|
|
|
#endif
|