core-legacy/include/helpers.h
Tobias Reisinger 1475f605aa add: foreign key support in database
add: more tests
fix: bad tag handling when finding 0 in column
2020-05-28 02:12:39 +02:00

18 lines
320 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);
#endif /* CORE_HELPERS_H */