1 2 3 4 5 6 7 8 9 10
#ifndef LIB_H #define LIB_H #include <stddef.h> void die(const char *message); char *formatbytes(size_t bytes, float *rounded); int intlen(size_t i); #endif