This repository has been archived on 2023-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
tcpaste/include/util.h
Thorsten Schubert 64c89e9274
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone Build encountered an error
Bug fixes
2021-11-08 18:39:10 +01:00

18 lines
426 B
C

/* vi:set ft=c ts=4 sw=4 noet noai: */
#pragma once
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "log.h"
#include "macros.h"
void gen_rnd_str(char* buf, size_t len);
const char* epoch_to_utc(time_t epoch);
bool fs_unlink_file(const char* path);
double dpow(double base, unsigned short exp) _CONST;
char* toLower(const char* src, char* buf);