core-legacy/include/helpers.h

20 lines
352 B
C

#ifndef CORE_HELPERS_H
#define CORE_HELPERS_H
#include <time.h>
#include <mongoose.h>
#include <config.h>
int
helper_connect_tcp_server(char* host, uint16_t port);
int
helper_get_weekday(const struct tm *time_struct);
int
helper_drop_privileges();
char*
find_query_param(struct mg_str query_mg_str, char* search_key);
#endif /* CORE_HELPERS_H */