lat/include/lib.h

9 lines
143 B
C
Raw Normal View History

2023-04-10 04:58:48 +00:00
#ifndef LIB_H
#define LIB_H
void die(const char *message);
2023-04-10 16:51:42 +00:00
2023-04-11 00:14:18 +00:00
char *formatBytes(unsigned bytes, float *rounded);
2023-04-10 18:36:45 +00:00
int intlen(unsigned i);
2023-04-10 04:58:48 +00:00
#endif