12 lines
181 B
C
12 lines
181 B
C
#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
|