mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-26 21:42:23 -06:00
9 lines
108 B
C
9 lines
108 B
C
// vi:ft=c
|
|
#ifndef SERVER_H_
|
|
#define SERVER_H_
|
|
#include <stdint.h>
|
|
|
|
void server_run(uint16_t port);
|
|
|
|
#endif
|