/*
* Copyright (C) 2021 P. J. McDermott
*
* This file is part of @
*
* @ is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @ is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with @. If not, see .
*/
#ifndef DATETIME_H_
#define DATETIME_H_
#include
int
datetime_parse(const char *input, time_t *arg_sec);
int
datetime_strftime_date(const struct tm *tm, char **out, size_t *out_sz,
char **buf, size_t *i);
int
datetime_strftime_time(const struct tm *tm, char **out, size_t *out_sz,
char **buf, size_t *i);
int
datetime_strftime_misc(const struct tm *tm, char **out, size_t *out_sz,
char **buf, size_t *i);
#endif /* DATETIME_H_ */