20 lines
351 B
C
20 lines
351 B
C
#ifndef CORE_HELPERS_H
|
|
#define CORE_HELPERS_H
|
|
|
|
#include <time.h>
|
|
#include <config.h>
|
|
#include <confini.h>
|
|
|
|
int
|
|
helper_connect_tcp_server(char* host, uint16_t port);
|
|
|
|
void
|
|
helper_parse_cli(int argc, const char **argv, config_t *config);
|
|
|
|
int
|
|
helper_get_weekday(const struct tm *time_struct);
|
|
|
|
int
|
|
helper_drop_privileges();
|
|
|
|
#endif /* CORE_HELPERS_H */
|