view util.h @ 81:1ffe2f5a8500

pasterd: use HTML files to allow themes
author David Demelier <markand@malikania.fr>
date Fri, 17 Mar 2023 07:56:01 +0100
parents 52029a52a385
children
line wrap: on
line source

/*
 * util.h -- various utilities
 *
 * Copyright (c) 2020-2023 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef PASTER_UTIL_H
#define PASTER_UTIL_H

#include <stddef.h>
#include <time.h>

#define NELEM(x) (sizeof (x) / sizeof (x)[0])

struct tm;
struct kreq;

struct duration {
	const char *title;
	long long int secs;
};

extern const char * const languages[];
extern const size_t languagesz;

extern const struct duration durations[];
extern const size_t durationsz;

void
die(const char *, ...);

char *
estrdup(const char *);

void *
ecalloc(size_t, size_t);

const char *
bprintf(const char *, ...);

const char *
bstrftime(const char *, const struct tm *);

const char *
path(const char *);

void
replace(char **, const char *);

const char *
ttl(time_t, long long int);

#endif /* !PASTER_UTIL_H */