Embedded gpp

This commit is contained in:
kamkow1
2025-06-09 20:10:57 +02:00
parent 23de19b63e
commit ac48e49ecc
11 changed files with 171 additions and 78 deletions

11
routes.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef ROUTES_H_
#define ROUTES_H_
#include "mongoose/mongoose.h"
void route_page_not_found(struct mg_connection *conn, struct mg_http_message *msg);
void route_simple_css(struct mg_connection *conn, struct mg_http_message *msg);
void route_favicon(struct mg_connection *conn, struct mg_http_message *msg);
void route_home(struct mg_connection *conn, struct mg_http_message *msg);
#endif // ROUTES_H_