1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-06-07 02:00:12 -07:00
2022-12-03 19:13:16 -08:00

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