mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-26 21:42:23 -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
|