12 lines
405 B
C
12 lines
405 B
C
#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_
|