mirror of
https://github.com/peterantypas/maiana.git
synced 2025-06-07 02:00:12 -07:00
11 lines
147 B
C
11 lines
147 B
C
#ifndef __HTTP_SERVER_H__
|
|
#define __HTTP_SERVER_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
void start_httpd();
|
|
void stop_httpd();
|
|
bool is_httpd_running();
|
|
|
|
#endif
|