2023-04-10 04:58:48 +00:00
|
|
|
#ifndef LIB_H
|
|
|
|
#define LIB_H
|
2023-04-11 16:32:38 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2023-04-10 04:58:48 +00:00
|
|
|
void die(const char *message);
|
2023-04-10 16:51:42 +00:00
|
|
|
|
2023-04-11 23:17:36 +00:00
|
|
|
char *formatbytes(size_t bytes, float *rounded);
|
2023-04-10 18:36:45 +00:00
|
|
|
|
2023-04-11 16:32:38 +00:00
|
|
|
int intlen(size_t i);
|
2023-04-10 04:58:48 +00:00
|
|
|
#endif
|