kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 6dca7d51e6317e0d4a58e1477f99a66f8c0a8d3f
parent 72073701b08c9e299dcd9bc52f95bee7dc6f3d8d
Author: Joris Vink <joris@coders.se>
Date:   Fri, 29 Jun 2018 09:56:38 +0200

update prototype for kore_date_to_time()

Diffstat:
include/kore/kore.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/kore/kore.h b/include/kore/kore.h @@ -607,9 +607,9 @@ void kore_pool_init(struct kore_pool *, const char *, size_t, size_t); void kore_pool_cleanup(struct kore_pool *); -time_t kore_date_to_time(char *); char *kore_time_to_date(time_t); char *kore_strdup(const char *); +time_t kore_date_to_time(const char *); void kore_log(int, const char *, ...) __attribute__((format (printf, 2, 3))); u_int64_t kore_strtonum64(const char *, int, int *);