1 .\" $NetBSD: humanize_number.3,v 1.11 2011/08/20 21:35:32 wiz Exp $
3 .\" Copyright (c) 1999, 2002, 2008 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Luke Mewburn and by Tomas Svensson.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
34 .Nm dehumanize_number ,
36 .Nd format a number into a human readable form and vice versa
40 .Fn dehumanize_number "const char *str" "int64_t *result"
42 .Fn humanize_number "char *buffer" "size_t len" "int64_t number" "const char *suffix" "int scale" "int flags"
46 function formats the signed 64 bit quantity given in
52 is appended to the end.
58 If the formatted number (including
60 would be too long to fit into
64 by 1024 until it will.
67 with the appropriate SI designator.
70 .Bl -column "Prefix" "Description" "Multiplier" -offset indent
71 .It Sy "Prefix" Ta Sy "Description" Ta Sy "Multiplier"
75 .It T tera 1099511627776
76 .It P peta 1125899906842624
77 .It E exa 1152921504606846976
81 must be at least 4 plus the length of
83 in order to ensure a useful result is generated into
85 To use a specific prefix, specify this as
87 (Multiplier = 1024 ^ scale).
88 This can not be combined with any of the
92 The following flags may be passed in
94 .Bl -tag -width Dv -offset indent
96 Format the buffer using the lowest multiplier possible.
98 Return the prefix index number (the number of times
100 must be divided to fit) instead of formatting it to the buffer.
103 The following flags may be passed in
105 .Bl -tag -width Dv -offset indent
107 If the final result is less than 10, display it using one digit.
109 Do not put a space between
113 Use 'B' (bytes) as prefix if the original result does not have a prefix.
114 .It Dv HN_DIVISOR_1000
117 with 1000 instead of 1024.
121 .Fn dehumanize_number
122 function parses the string representing an integral value given in
124 and stores the numerical value in the integer pointed to by
126 The provided string may hold one of the suffixes, which will be interpreted
127 and used to scale up its accompanying numerical value.
130 returns the number of characters stored in
132 (excluding the terminating NUL) upon success, or \-1 upon failure.
135 is specified, the prefix index number will be returned instead.
137 .Fn dehumanize_number
138 returns 0 if the string was parsed correctly.
139 A \-1 is returned to indicate failure and an error code is stored in
142 .Fn dehumanize_number
143 will fail and no number will be stored in
150 was empty or carried an unknown suffix.
154 represented a number that does not fit in
160 .Xr humanize_number 9
166 .Fn dehumanize_number