18 lines
426 B
C
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);
|