micro-utils/libmu/human.h

12 lines
172 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#ifndef _HUMAN_H
#define _HUMAN_H
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#define MU_HUMAN_BUF_SIZE 16
2024-07-10 19:59:28 +00:00
char *mu_humansize(off_t n, int block);
2024-07-09 19:33:45 +00:00
#endif