.\" $NetBSD: humanize_number.9,v 1.9 2010/08/07 16:41:34 jruoho Exp $ .\" .\" Copyright (c) 1999 The NetBSD Foundation, Inc. .\" All rights reserved. .\" .\" This code is derived from software contributed to The NetBSD Foundation .\" by Luke Mewburn. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" .Dd November 3, 2010 .Dt HUMANIZE_UNSIGNED 3 .Os .Sh NAME .Nm humanize_unsigned , .Nm format_bytes .Nd human readable numbers .Sh LIBRARY .Lb libutil .Sh SYNOPSIS .In sys/types.h .In libutil.h .Ft int .Fn humanize_unsigned \ "char *buf" "size_t len" "uint64_t number" "const char *suffix" "int divisor" .Ft int .Fn format_bytes "char *buf" "size_t len" "uint64_t number" .Sh DESCRIPTION The .Fn humanize_unsigned function formats the unsigned 64-bit quantity given in .Fa number into .Fa buf . A space and then .Fa suffix is appended to the end. The supplied .Fa buf must be at least .Fa len bytes long. .Pp If the formatted number (including .Fa suffix ) is too long to fit into .Fa buf , .Fn humanize_unsigned divides .Fa number by .Fa divisor until it will fit. In this case, .Fa suffix is prefixed with the appropriate SI designator. Suitable values of .Fa divisor are 1024 or 1000 to remain consistent with the common meanings of the SI designator prefixes. .Pp The prefixes are: .Bl -column "Prefix" "Description" "Multiplier" -offset indent .It Sy "Prefix" Ta Sy "Description" Ta Sy "Multiplier" .It k kilo 1024 .It M mega 1048576 .It G giga 1073741824 .It T tera 1099511627776 .It P peta 1125899906842624 .It E exa 1152921504606846976 .El .Pp The .Fa len argument must be at least 4 plus the length of .Fa suffix , in order to ensure a useful result in .Fa buf . .Pp The .Fn format_bytes function is a front-end to .Fn humanize_unsigned . It calls the latter with a .Fa suffix of .Dq B . Also, if the suffix in the returned .Fa buf would not have a prefix, the suffix is removed. This means that a result of .Dq 100000 occurs, instead of .Dq 100000 B . .Sh RETURN VALUES Both functions return the number of characters stored in .Fa buf (excluding the terminating NUL) upon success, or \-1 upon failure. .Sh SEE ALSO .Xr humanize_number 3 .Sh HISTORY These functions first appeared in .Nx 1.5 and were later ported to .Dx 2.9 .