Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
server.h
Go to the documentation of this file.
1/**
2 * @file server.h
3 * @brief Declaration of the HTTP server functions.
4 */
5
6#ifndef SERVER_H
7#define SERVER_H
8
9/**
10 * @brief Starts the HTTP server.
11 *
12 * Initializes and runs the Civetweb server on the specified port.
13 *
14 * @param port TCP port number to listen on.
15 */
16void start_http_server(int port);
17
18#endif
void start_http_server(int port)
Starts the HTTP server.
Definition server.c:59