mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-27 05:47:37 -06:00
8 lines
94 B
C
8 lines
94 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
#include<stdint.h>
|
|
|
|
void server_run(uint16_t port);
|
|
|
|
#endif
|