lat/include/util.h
Shav Kinderlehrer 58e0d435c3 Add args
- add color arg
- add lines arg
2023-04-12 23:46:53 -04:00

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