lat/include/util.h

12 lines
181 B
C
Raw Permalink Normal View History

2023-04-10 04:58:48 +00:00
#ifndef LIB_H
#define LIB_H
#include <stdbool.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
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