#ifndef COMMON_H #include #include #include #include typedef struct MHD_Response*(*endpoint)(const char *method, struct MHD_Connection*, int *status); typedef char *(*query_func)(const char *path); char *duplicate(const char *x); struct MHD_Response *get_from_file(const char *path); #endif // COMMON_H