* Convert a number of bytes to an appropriately human-readable output. */
| 166 | * Convert a number of bytes to an appropriately human-readable output. |
| 167 | */ |
| 168 | void |
| 169 | zfs_nicebytes(uint64_t num, char *buf, size_t buflen) |
| 170 | { |
| 171 | zfs_nicenum_format(num, buf, buflen, ZFS_NICENUM_BYTES); |
| 172 | } |
no test coverage detected