12 lines
174 B
C
12 lines
174 B
C
|
#ifndef _HUMAN_H
|
||
|
#define _HUMAN_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdint.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define MU_HUMAN_BUF_SIZE 16
|
||
|
|
||
|
char *mu_humansize(off_t n, off_t block);
|
||
|
#endif
|