aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
blob: 1b0243c37aec8bd6530a89e5b5e204511982aa70 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LIB_H
#define LIB_H
#include <stdbool.h>
#include <stddef.h>

void die(const char *message);

char *formatbytes(size_t bytes, float *rounded);

int intlen(size_t i);
#endif