summaryrefslogtreecommitdiff
path: root/src/humane.h
blob: 959589ed3e9978e0daedf10dc894634c77a25948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _JIO_HUMANE_H
#define _JIO_HUMANE_H

#include <stdint.h>

typedef struct humane_t {
	char	buf[sizeof("1023.99 EiB")];
} humane_t;

char * humane_bytes(humane_t *humane, uint64_t bytes);

#endif
© All Rights Reserved