jsfw/server.h

9 lines
111 B
C
Raw Normal View History

2022-08-29 18:06:25 -05:00
// vi: set ft=c
2022-08-29 17:27:03 -05:00
#ifndef SERVER_H
#define SERVER_H
2022-08-30 12:08:36 -05:00
#include <stdint.h>
2022-08-29 17:27:03 -05:00
void server_run(uint16_t port);
#endif