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