mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
41 lines
994 B
C
41 lines
994 B
C
#ifndef KERNAUX_INCLUDED_UNITS
|
|
#define KERNAUX_INCLUDED_UNITS
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
enum KernAux_Unit {
|
|
KERNAUX_UNIT_BIT,
|
|
KERNAUX_UNIT_BYTE,
|
|
};
|
|
|
|
enum KernAux_UnitPrefixDec {
|
|
KERNAUX_UNITPFX_KILO,
|
|
KERNAUX_UNITPFX_MEGA,
|
|
KERNAUX_UNITPFX_GIGA,
|
|
};
|
|
|
|
enum KernAux_UnitPrefixBin {
|
|
KERNAUX_UNITPFX_KIBI,
|
|
KERNAUX_UNITPFX_MEBI,
|
|
KERNAUX_UNITPFX_GIBI,
|
|
};
|
|
|
|
bool kernaux_units_human_raw(size_t value, enum KernAux_Unit unit,
|
|
char *buffer, size_t buffer_size);
|
|
bool kernaux_units_human_dec(size_t value, enum KernAux_Unit unit,
|
|
enum KernAux_UnitPrefixDec prefix,
|
|
char *buffer, size_t buffer_size);
|
|
bool kernaux_units_human_bin(size_t value, enum KernAux_Unit unit,
|
|
enum KernAux_UnitPrefixBin prefix,
|
|
char *buffer, size_t buffer_size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|