16 lines
259 B
C
16 lines
259 B
C
#ifndef CORE_HELPERS_H
|
|
#define CORE_HELPERS_H
|
|
|
|
#include <time.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();
|
|
|
|
#endif /* CORE_HELPERS_H */
|