xref: /freebsd/contrib/bc/README.md (revision a970610a3af63b3f4df5b69d91c6b4093a00ed8f)
1252884aeSStefan Eßer# `bc`
2252884aeSStefan Eßer
34fca8e0fSStefan Eßer***WARNING: New user registration for <https://git.gavinhoward.com/> is disabled
44fca8e0fSStefan Eßerbecause of spam. If you need to report a bug with `bc`, email gavin at this site
54fca8e0fSStefan Eßerminus the `git.` part for an account, and I will create one for you. Or you can
64fca8e0fSStefan Eßerreport an issue at [GitHub][29].***
778bc019dSStefan Eßer
84fca8e0fSStefan Eßer***WARNING: This project has moved to [https://git.gavinhoward.com/][20] for
94fca8e0fSStefan Eßer[these reasons][21], though GitHub will remain a mirror.***
10252884aeSStefan Eßer
11252884aeSStefan EßerThis is an implementation of the [POSIX `bc` calculator][12] that implements
12252884aeSStefan Eßer[GNU `bc`][1] extensions, as well as the period (`.`) extension for the BSD
13252884aeSStefan Eßerflavor of `bc`.
14252884aeSStefan Eßer
153aa99676SStefan EßerFor more information, see this `bc`'s full manual.
16252884aeSStefan Eßer
17252884aeSStefan EßerThis `bc` also includes an implementation of `dc` in the same binary, accessible
18252884aeSStefan Eßervia a symbolic link, which implements all FreeBSD and GNU extensions. (If a
19252884aeSStefan Eßerstandalone `dc` binary is desired, `bc` can be copied and renamed to `dc`.) The
20252884aeSStefan Eßer`!` command is omitted; I believe this poses security concerns and that such
21252884aeSStefan Eßerfunctionality is unnecessary.
22252884aeSStefan Eßer
233aa99676SStefan EßerFor more information, see the `dc`'s full manual.
24252884aeSStefan Eßer
258ea90135SStefan EßerThis `bc` also provides `bc`'s math as a library with C bindings, called `bcl`.
268ea90135SStefan Eßer
278ea90135SStefan EßerFor more information, see the full manual for `bcl`.
288ea90135SStefan Eßer
2944d4804dSStefan Eßer## License
3044d4804dSStefan Eßer
31252884aeSStefan EßerThis `bc` is Free and Open Source Software (FOSS). It is offered under the BSD
32252884aeSStefan Eßer2-clause License. Full license text may be found in the [`LICENSE.md`][4] file.
33252884aeSStefan Eßer
34252884aeSStefan Eßer## Prerequisites
35252884aeSStefan Eßer
367e5c51e5SStefan EßerThis `bc` only requires either:
377e5c51e5SStefan Eßer
387e5c51e5SStefan Eßer1.	Windows 10 or later, or
397e5c51e5SStefan Eßer2.	A C99-compatible compiler and a (mostly) POSIX 2008-compatible system with
407e5c51e5SStefan Eßer	the XSI (X/Open System Interfaces) option group.
41252884aeSStefan Eßer
42252884aeSStefan EßerSince POSIX 2008 with XSI requires the existence of a C99 compiler as `c99`, any
43252884aeSStefan EßerPOSIX and XSI-compatible system will have everything needed.
44252884aeSStefan Eßer
457e5c51e5SStefan EßerPOSIX-compatible systems that are known to work:
46252884aeSStefan Eßer
47252884aeSStefan Eßer* Linux
48252884aeSStefan Eßer* FreeBSD
49252884aeSStefan Eßer* OpenBSD
50252884aeSStefan Eßer* NetBSD
51*a970610aSStefan Eßer* macOS
523aa99676SStefan Eßer* Solaris* (as long as the Solaris version supports POSIX 2008)
53252884aeSStefan Eßer* AIX
5410328f8bSStefan Eßer* HP-UX* (except for history)
55252884aeSStefan Eßer
567e5c51e5SStefan EßerIn addition, there is compatibility code to make this `bc` work on Windows.
577e5c51e5SStefan Eßer
58252884aeSStefan EßerPlease submit bug reports if this `bc` does not build out of the box on any
597e5c51e5SStefan Eßersystem.
60252884aeSStefan Eßer
61252884aeSStefan Eßer## Build
62252884aeSStefan Eßer
6344d4804dSStefan EßerThis `bc` should build unmodified on any POSIX-compliant system or on Windows
6444d4804dSStefan Eßerstarting with Windows 10 (though earlier versions may work).
6544d4804dSStefan Eßer
6610041e99SStefan EßerFor more complex build requirements than the ones below, see the [build
6710041e99SStefan Eßermanual][5].
6844d4804dSStefan Eßer
697e5c51e5SStefan Eßer### Windows
707e5c51e5SStefan Eßer
717e5c51e5SStefan EßerThere is no guarantee that this `bc` will work on any version of Windows earlier
727e5c51e5SStefan Eßerthan Windows 10 (I cannot test on earlier versions), but it is guaranteed to
737e5c51e5SStefan Eßerwork on Windows 10 at least.
747e5c51e5SStefan Eßer
757e5c51e5SStefan EßerAlso, if building with MSBuild, the MSBuild bundled with Visual Studio is
767e5c51e5SStefan Eßerrequired.
777e5c51e5SStefan Eßer
787e5c51e5SStefan Eßer**Note**: Unlike the POSIX-compatible platforms, only one build configuration is
7978bc019dSStefan Eßersupported on Windows: extra math and history enabled, NLS (locale support)
8078bc019dSStefan Eßerdisabled, with both calculators built.
817e5c51e5SStefan Eßer
827e5c51e5SStefan Eßer#### `bc`
837e5c51e5SStefan Eßer
8410041e99SStefan EßerTo build `bc`, you can open the `vs/bc.sln` file in Visual Studio, select the
857e5c51e5SStefan Eßerconfiguration, and build.
867e5c51e5SStefan Eßer
877e5c51e5SStefan EßerYou can also build using MSBuild with the following from the root directory:
887e5c51e5SStefan Eßer
897e5c51e5SStefan Eßer```
9010041e99SStefan Eßermsbuild -property:Configuration=<config> vs/bc.sln
917e5c51e5SStefan Eßer```
927e5c51e5SStefan Eßer
937e5c51e5SStefan Eßerwhere `<config>` is either one of `Debug` or `Release`.
947e5c51e5SStefan Eßer
9510041e99SStefan EßerOn Windows, the calculators are built as `vs/bin/<platform>/<config>/bc.exe` and
9610041e99SStefan Eßer`vs/bin/<Platform>/<Config>/dc.exe`, where `<platform>` can be either `Win32` or
9710041e99SStefan Eßer`x64`, and `<config>` can be `Debug` or `Release`.
9810041e99SStefan Eßer
9910041e99SStefan Eßer**Note**: On Windows, `dc.exe` is just copied from `bc.exe`; it is not linked.
10010041e99SStefan EßerPatches are welcome for a way to do that.
10110041e99SStefan Eßer
1027e5c51e5SStefan Eßer#### `bcl` (Library)
1037e5c51e5SStefan Eßer
10410041e99SStefan EßerTo build the library, you can open the `vs/bcl.sln` file in Visual Studio,
10510041e99SStefan Eßerselect the configuration, and build.
1067e5c51e5SStefan Eßer
1077e5c51e5SStefan EßerYou can also build using MSBuild with the following from the root directory:
1087e5c51e5SStefan Eßer
1097e5c51e5SStefan Eßer```
11010041e99SStefan Eßermsbuild -property:Configuration=<config> vs/bcl.sln
1117e5c51e5SStefan Eßer```
1127e5c51e5SStefan Eßer
11310041e99SStefan Eßerwhere `<config>` is either one of `Debug`, `ReleaseMD`, or `ReleaseMT`.
11410041e99SStefan Eßer
11510041e99SStefan EßerOn Windows, the library is built as `vs/lib/<platform>/<config>/bcl.lib`, where
11610041e99SStefan Eßer`<platform>` can be either `Win32` or `x64`, and `<config>` can be `Debug`,
11710041e99SStefan Eßer`ReleaseMD`, or `ReleaseMT`.
1187e5c51e5SStefan Eßer
1197e5c51e5SStefan Eßer### POSIX-Compatible Systems
1207e5c51e5SStefan Eßer
1217e5c51e5SStefan EßerOn POSIX-compatible systems, `bc` is built as `bin/bc` and `dc` is built as
12210041e99SStefan Eßer`bin/dc` by default.
1237e5c51e5SStefan Eßer
1247e5c51e5SStefan Eßer#### Default
125252884aeSStefan Eßer
126252884aeSStefan EßerFor the default build with optimization, use the following commands in the root
127252884aeSStefan Eßerdirectory:
128252884aeSStefan Eßer
129252884aeSStefan Eßer```
130252884aeSStefan Eßer./configure.sh -O3
131252884aeSStefan Eßermake
132252884aeSStefan Eßer```
133252884aeSStefan Eßer
1347e5c51e5SStefan Eßer#### One Calculator
135252884aeSStefan Eßer
136252884aeSStefan EßerTo only build `bc`, use the following commands:
137252884aeSStefan Eßer
138252884aeSStefan Eßer```
139252884aeSStefan Eßer./configure.sh --disable-dc
140252884aeSStefan Eßermake
141252884aeSStefan Eßer```
142252884aeSStefan Eßer
143252884aeSStefan EßerTo only build `dc`, use the following commands:
144252884aeSStefan Eßer
145252884aeSStefan Eßer```
146252884aeSStefan Eßer./configure.sh --disable-bc
147252884aeSStefan Eßermake
148252884aeSStefan Eßer```
149252884aeSStefan Eßer
1507e5c51e5SStefan Eßer#### Debug
151252884aeSStefan Eßer
152252884aeSStefan EßerFor debug builds, use the following commands in the root directory:
153252884aeSStefan Eßer
154252884aeSStefan Eßer```
155252884aeSStefan Eßer./configure.sh -g
156252884aeSStefan Eßermake
157252884aeSStefan Eßer```
158252884aeSStefan Eßer
1597e5c51e5SStefan Eßer#### Install
160252884aeSStefan Eßer
161252884aeSStefan EßerTo install, use the following command:
162252884aeSStefan Eßer
163252884aeSStefan Eßer```
164252884aeSStefan Eßermake install
165252884aeSStefan Eßer```
166252884aeSStefan Eßer
167252884aeSStefan EßerBy default, `bc` and `dc` will be installed in `/usr/local`. For installing in
168252884aeSStefan Eßerother locations, use the `PREFIX` environment variable when running
169252884aeSStefan Eßer`configure.sh` or pass the `--prefix=<prefix>` option to `configure.sh`. See the
170252884aeSStefan Eßer[build manual][5], or run `./configure.sh --help`, for more details.
171252884aeSStefan Eßer
1727e5c51e5SStefan Eßer#### Library
17350696a6eSStefan Eßer
174d101cdd6SStefan EßerTo build the math library, pass the `-a` or `--library` options to
175d101cdd6SStefan Eßer`configure.sh`:
17650696a6eSStefan Eßer
17750696a6eSStefan Eßer```
17850696a6eSStefan Eßer./configure.sh -a
17950696a6eSStefan Eßer```
18050696a6eSStefan Eßer
18150696a6eSStefan EßerWhen building the library, the executables are not built. For more information,
18250696a6eSStefan Eßersee the [build manual][5].
18350696a6eSStefan Eßer
18450696a6eSStefan EßerThe library API can be found in [`manuals/bcl.3.md`][26] or `man bcl` once the
18550696a6eSStefan Eßerlibrary is installed.
18650696a6eSStefan Eßer
1877e5c51e5SStefan Eßer#### Package and Distro Maintainers
188252884aeSStefan Eßer
18910041e99SStefan EßerThis section is for package and distro maintainers.
19010041e99SStefan Eßer
19110041e99SStefan Eßer##### Out-of-Source Builds
19210041e99SStefan Eßer
19310041e99SStefan EßerOut-of-source builds are supported; just call `configure.sh` from the directory
19410041e99SStefan Eßerwhere the actual build will happen.
19510041e99SStefan Eßer
19610041e99SStefan EßerFor example, if the source is in `bc`, the build should happen in `build`, then
19710041e99SStefan Eßercall `configure.sh` and `make` like so:
19810041e99SStefan Eßer
19910041e99SStefan Eßer```
20010041e99SStefan Eßer../bc/configure.sh
20110041e99SStefan Eßermake
20210041e99SStefan Eßer```
20310041e99SStefan Eßer
20410041e99SStefan Eßer***WARNING***: The path to `configure.sh` from the build directory must not have
20510041e99SStefan Eßerspaces because `make` does not support target names with spaces.
20610041e99SStefan Eßer
2077e5c51e5SStefan Eßer##### Recommended Compiler
208252884aeSStefan Eßer
209252884aeSStefan EßerWhen I ran benchmarks with my `bc` compiled under `clang`, it performed much
210252884aeSStefan Eßerbetter than when compiled under `gcc`. I recommend compiling this `bc` with
211252884aeSStefan Eßer`clang`.
212252884aeSStefan Eßer
213252884aeSStefan EßerI also recommend building this `bc` with C11 if you can because `bc` will detect
214252884aeSStefan Eßera C11 compiler and add `_Noreturn` to any relevant function(s).
215252884aeSStefan Eßer
2167e5c51e5SStefan Eßer##### Recommended Optimizations
217252884aeSStefan Eßer
218252884aeSStefan EßerI wrote this `bc` with Separation of Concerns, which means that there are many
219252884aeSStefan Eßersmall functions that could be inlined. However, they are often called across
220252884aeSStefan Eßerfile boundaries, and the default optimizer can only look at the current file,
221252884aeSStefan Eßerwhich means that they are not inlined.
222252884aeSStefan Eßer
223252884aeSStefan EßerThus, because of the way this `bc` is built, it will automatically be slower
224252884aeSStefan Eßerthan other `bc` implementations when running scripts with no math. (My `bc`'s
225252884aeSStefan Eßermath is *much* faster, so any non-trivial script should run faster in my `bc`.)
226252884aeSStefan Eßer
227252884aeSStefan EßerSome, or all, of the difference can be made up with the right optimizations. The
228252884aeSStefan Eßeroptimizations I recommend are:
229252884aeSStefan Eßer
230252884aeSStefan Eßer1.	`-O3`
231252884aeSStefan Eßer2.	`-flto` (link-time optimization)
232252884aeSStefan Eßer
233252884aeSStefan Eßerin that order.
234252884aeSStefan Eßer
235252884aeSStefan EßerLink-time optimization, in particular, speeds up the `bc` a lot. This is because
236252884aeSStefan Eßerwhen link-time optimization is turned on, the optimizer can look across files
237252884aeSStefan Eßerand inline *much* more heavily.
238252884aeSStefan Eßer
239252884aeSStefan EßerHowever, I recommend ***NOT*** using `-march=native`. Doing so will reduce this
240252884aeSStefan Eßer`bc`'s performance, at least when building with link-time optimization. See the
241252884aeSStefan Eßer[benchmarks][19] for more details.
242252884aeSStefan Eßer
2437e5c51e5SStefan Eßer##### Stripping Binaries
244252884aeSStefan Eßer
245252884aeSStefan EßerBy default, non-debug binaries are stripped, but stripping can be disabled with
246252884aeSStefan Eßerthe `-T` option to `configure.sh`.
247252884aeSStefan Eßer
2487e5c51e5SStefan Eßer##### Using This `bc` as an Alternative
249252884aeSStefan Eßer
250252884aeSStefan EßerIf this `bc` is packaged as an alternative to an already existing `bc` package,
251252884aeSStefan Eßerit is possible to rename it in the build to prevent name collision. To prepend
252252884aeSStefan Eßerto the name, just run the following:
253252884aeSStefan Eßer
254252884aeSStefan Eßer```
255252884aeSStefan EßerEXECPREFIX=<some_prefix> ./configure.sh
256252884aeSStefan Eßer```
257252884aeSStefan Eßer
258252884aeSStefan EßerTo append to the name, just run the following:
259252884aeSStefan Eßer
260252884aeSStefan Eßer```
261252884aeSStefan EßerEXECSUFFIX=<some_suffix> ./configure.sh
262252884aeSStefan Eßer```
263252884aeSStefan Eßer
264252884aeSStefan EßerIf a package maintainer wishes to add both a prefix and a suffix, that is
265252884aeSStefan Eßerallowed.
266252884aeSStefan Eßer
267252884aeSStefan Eßer**Note**: The suggested name (and package name) when `bc` is not available is
268252884aeSStefan Eßer`bc-gh`.
269252884aeSStefan Eßer
2707e5c51e5SStefan Eßer##### Karatsuba Number
271252884aeSStefan Eßer
272252884aeSStefan EßerPackage and distro maintainers have one tool at their disposal to build this
27344d4804dSStefan Eßer`bc` in the optimal configuration: `scripts/karatsuba.py`.
274252884aeSStefan Eßer
275252884aeSStefan EßerThis script is not a compile-time or runtime prerequisite; it is for package and
276252884aeSStefan Eßerdistro maintainers to run once when a package is being created. It finds the
277252884aeSStefan Eßeroptimal Karatsuba number (see the [algorithms manual][7] for more information)
278252884aeSStefan Eßerfor the machine that it is running on.
279252884aeSStefan Eßer
280252884aeSStefan EßerThe easiest way to run this script is with `make karatsuba`.
281252884aeSStefan Eßer
282252884aeSStefan EßerIf desired, maintainers can also skip running this script because there is a
283252884aeSStefan Eßersane default for the Karatsuba number.
284252884aeSStefan Eßer
285252884aeSStefan Eßer## Status
286252884aeSStefan Eßer
287252884aeSStefan EßerThis `bc` is robust.
288252884aeSStefan Eßer
289252884aeSStefan EßerIt is well-tested, fuzzed, and fully standards-compliant (though not certified)
290252884aeSStefan Eßerwith POSIX `bc`. The math has been tested with 40+ million random problems, so
291252884aeSStefan Eßerit is as correct as I can make it.
292252884aeSStefan Eßer
293252884aeSStefan EßerThis `bc` can be used as a drop-in replacement for any existing `bc`. This `bc`
29478bc019dSStefan Eßeris also compatible with MinGW toolchains.
295252884aeSStefan Eßer
296252884aeSStefan EßerIn addition, this `bc` is considered complete; i.e., there will be no more
297252884aeSStefan Eßerreleases with additional features. However, it *is* actively maintained, so if
298252884aeSStefan Eßerany bugs are found, they will be fixed in new releases. Also, additional
299252884aeSStefan Eßertranslations will also be added as they are provided.
300252884aeSStefan Eßer
30144d4804dSStefan Eßer### Development
30244d4804dSStefan Eßer
30344d4804dSStefan EßerIf I (Gavin D. Howard) get [hit by a bus][27] and future programmers need to
30444d4804dSStefan Eßerhandle work themselves, the best place to start is the [Development manual][28].
30544d4804dSStefan Eßer
30644d4804dSStefan Eßer## Vim Syntax
30744d4804dSStefan Eßer
30844d4804dSStefan EßerI have developed (using other people's code to start) [`vim` syntax files][17]
30944d4804dSStefan Eßerfor this `bc` and `dc`, including the extensions.
31044d4804dSStefan Eßer
31144d4804dSStefan Eßer## `bc` Libs
31244d4804dSStefan Eßer
31344d4804dSStefan EßerI have gathered some excellent [`bc` and `dc` libraries][18]. These libraries
31444d4804dSStefan Eßermay prove useful to any serious users.
31544d4804dSStefan Eßer
316252884aeSStefan Eßer## Comparison to GNU `bc`
317252884aeSStefan Eßer
318252884aeSStefan EßerThis `bc` compares favorably to GNU `bc`.
319252884aeSStefan Eßer
3207e5c51e5SStefan Eßer* This `bc` builds natively on Windows.
321d101cdd6SStefan Eßer* It has more extensions, which make this `bc` more useful for scripting. (See
322d101cdd6SStefan Eßer  [Extensions](#extensions).)
323252884aeSStefan Eßer* This `bc` is a bit more POSIX compliant.
324252884aeSStefan Eßer* It has a much less buggy parser. The GNU `bc` will give parse errors for what
325252884aeSStefan Eßer  is actually valid `bc` code, or should be. For example, putting an `else` on
326252884aeSStefan Eßer  a new line after a brace can cause GNU `bc` to give a parse error.
327252884aeSStefan Eßer* This `bc` has fewer crashes.
328252884aeSStefan Eßer* GNU `bc` calculates the wrong number of significant digits for `length(x)`.
329252884aeSStefan Eßer* GNU `bc` will sometimes print numbers incorrectly. For example, when running
330252884aeSStefan Eßer  it on the file `tests/bc/power.txt` in this repo, GNU `bc` gets all the right
331252884aeSStefan Eßer  answers, but it fails to wrap the numbers at the proper place when outputting
332252884aeSStefan Eßer  to a file.
333252884aeSStefan Eßer* This `bc` is faster. (See [Performance](#performance).)
334252884aeSStefan Eßer
335252884aeSStefan Eßer### Performance
336252884aeSStefan Eßer
337252884aeSStefan EßerBecause this `bc` packs more than `1` decimal digit per hardware integer, this
338252884aeSStefan Eßer`bc` is faster than GNU `bc` and can be *much* faster. Full benchmarks can be
339252884aeSStefan Eßerfound at [manuals/benchmarks.md][19].
340252884aeSStefan Eßer
341252884aeSStefan EßerThere is one instance where this `bc` is slower: if scripts are light on math.
342252884aeSStefan EßerThis is because this `bc`'s intepreter is slightly slower than GNU `bc`, but
343252884aeSStefan Eßerthat is because it is more robust. See the [benchmarks][19].
344252884aeSStefan Eßer
345d101cdd6SStefan Eßer### Extensions
346d101cdd6SStefan Eßer
347d101cdd6SStefan EßerBelow is a non-comprehensive list of extensions that this `bc` and `dc` have
348d101cdd6SStefan Eßerthat all others do not.
349d101cdd6SStefan Eßer
350*a970610aSStefan Eßer* **The `!` operator has higher precedence than the `!` operator in other `bc`
351*a970610aSStefan Eßer  implementations.**
352d101cdd6SStefan Eßer* An extended math library. (See [here][30] for more information.)
353d101cdd6SStefan Eßer* A command-line prompt.
354d101cdd6SStefan Eßer* Turning on and off digit clamping. (Digit clamping is about how to treat
355d101cdd6SStefan Eßer  "invalid" digits for a particular base. GNU `bc` uses it, and the BSD `bc`
356d101cdd6SStefan Eßer  does not. Mine does both.)
357d101cdd6SStefan Eßer* A pseudo-random number generator. This includes the ability to set the seed
358d101cdd6SStefan Eßer  and get reproducible streams of random numbers.
359d101cdd6SStefan Eßer* The ability to use stacks for the globals `scale`, `ibase`, and `obase`
360d101cdd6SStefan Eßer  instead of needing to restore them in *every* function.
361d101cdd6SStefan Eßer* The ability to *not* use non-standard keywords. For example, `abs` is a
362d101cdd6SStefan Eßer  keyword (a built-in function), but if some script actually defines a function
363d101cdd6SStefan Eßer  called that, it's possible to tell my `bc` to not treat it as a keyword, which
364d101cdd6SStefan Eßer  will make the script parses correctly.
365d101cdd6SStefan Eßer* The ability to turn on and off printing leading zeroes on numbers greater than
366d101cdd6SStefan Eßer  `-1` and less than `1`.
367d101cdd6SStefan Eßer* Outputting in scientific and engineering notation.
368d101cdd6SStefan Eßer* Accepting input in scientific and engineering notation.
369d101cdd6SStefan Eßer* Passing strings and arrays to the `length()` built-in function. (In `dc`, the
370d101cdd6SStefan Eßer  `Y` command will do this for arrays, and the `Z` command will do this for both
371d101cdd6SStefan Eßer  numbers and strings.)
372d101cdd6SStefan Eßer* The `abs()` built-in function. (This is the `b` command in `dc`.)
373d101cdd6SStefan Eßer* The `is_number()` and `is_string()` built-in functions. (These tell whether a
374d101cdd6SStefan Eßer  variable is holding a string or a number, for runtime type checking. The
375d101cdd6SStefan Eßer  commands are `u` and `t` in `dc`.)
376d101cdd6SStefan Eßer* For `bc` only, the `divmod()` built-in function for computing a quotient and
377d101cdd6SStefan Eßer  remainder at the same time.
378d101cdd6SStefan Eßer* For `bc` only, the `asciify()` built-in function for converting an array to a
379d101cdd6SStefan Eßer  string.
380d101cdd6SStefan Eßer* The `$` truncation operator. (It's the same in `bc` and `dc`.)
381d101cdd6SStefan Eßer* The `@` "set scale" operator. (It's the same in `bc` and `dc`.)
382d101cdd6SStefan Eßer* The decimal shift operators. (`<<` and `>>` in `bc`, `H` and `h` in `dc`.)
383d101cdd6SStefan Eßer* Built-in functions or commands to get the max of `scale`, `ibase`, and
384d101cdd6SStefan Eßer  `obase`.
385d101cdd6SStefan Eßer* The ability to put strings into variables in `bc`. (This always existed in
386d101cdd6SStefan Eßer  `dc`.)
387d101cdd6SStefan Eßer* The `'` command in `dc` for the depth of the execution stack.
388d101cdd6SStefan Eßer* The `y` command in `dc` for the depth of register stacks.
389d101cdd6SStefan Eßer* Built-in functions or commands to get the value of certain environment
390d101cdd6SStefan Eßer  variables that might affect execution.
391d101cdd6SStefan Eßer* The `stream` keyword to do the same thing as the `P` command in `dc`.
392d101cdd6SStefan Eßer* Defined order of evaluation.
393d101cdd6SStefan Eßer* Defined exit statuses.
394d101cdd6SStefan Eßer* All environment variables other than `POSIXLY_CORRECT`, `BC_ENV_ARGS`, and
395d101cdd6SStefan Eßer  `BC_LINE_LENGTH`.
396d101cdd6SStefan Eßer* The ability for users to define their own defaults for various options during
397d101cdd6SStefan Eßer  build. (See [here][31] for more information.)
398d101cdd6SStefan Eßer
399252884aeSStefan Eßer## Algorithms
400252884aeSStefan Eßer
401252884aeSStefan EßerTo see what algorithms this `bc` uses, see the [algorithms manual][7].
402252884aeSStefan Eßer
403252884aeSStefan Eßer## Locales
404252884aeSStefan Eßer
4057e5c51e5SStefan EßerCurrently, there is no locale support on Windows.
4067e5c51e5SStefan Eßer
4077e5c51e5SStefan EßerAdditionally, this `bc` only has support for English (and US English), French,
408252884aeSStefan EßerGerman, Portuguese, Dutch, Polish, Russian, Japanese, and Chinese locales.
409252884aeSStefan EßerPatches are welcome for translations; use the existing `*.msg` files in
410252884aeSStefan Eßer`locales/` as a starting point.
411252884aeSStefan Eßer
412252884aeSStefan EßerIn addition, patches for improvements are welcome; the last two messages in
413252884aeSStefan EßerPortuguese were made with Google Translate, and the Dutch, Polish, Russian,
414252884aeSStefan EßerJapanese, and Chinese locales were all generated with [DeepL][22].
415252884aeSStefan Eßer
416252884aeSStefan EßerThe message files provided assume that locales apply to all regions where a
417252884aeSStefan Eßerlanguage is used, but this might not be true for, e.g., `fr_CA` and `fr_CH`.
418252884aeSStefan EßerAny corrections or a confirmation that the current texts are acceptable for
419252884aeSStefan Eßerthose regions would be appreciated, too.
420252884aeSStefan Eßer
421252884aeSStefan Eßer## Other Projects
422252884aeSStefan Eßer
423252884aeSStefan EßerOther projects based on this bc are:
424252884aeSStefan Eßer
425252884aeSStefan Eßer* [busybox `bc`][8]. The busybox maintainers have made their own changes, so any
426252884aeSStefan Eßer  bugs in the busybox `bc` should be reported to them.
427252884aeSStefan Eßer* [toybox `bc`][9]. The maintainer has also made his own changes, so bugs in the
428252884aeSStefan Eßer  toybox `bc` should be reported there.
4293aa99676SStefan Eßer* [FreeBSD `bc`][23]. While the `bc` in FreeBSD is kept up-to-date, it is better
4305d934bc0SStefan Eßer  to [report bugs there][24], as well as [submit patches][25], and the
4315d934bc0SStefan Eßer  maintainers of the package will contact me if necessary.
432*a970610aSStefan Eßer* [macOS `bc`][35]. Any bugs in that `bc` should be reported to me, but do
43376238846SStefan Eßer  expect bugs because the version is old.
43476238846SStefan Eßer* [Android Open Source `bc`][32]. Any bugs in that `bc` can be reported here.
43576238846SStefan Eßer
43676238846SStefan EßerThis is a non-comprehensive list of Linux distros that use this `bc` as the
43776238846SStefan Eßersystem `bc`:
43876238846SStefan Eßer
43976238846SStefan Eßer* [Gentoo][33]; it is a first-class alternative to GNU `bc`, but not exclusive.
44076238846SStefan Eßer* [Linux from Scratch][34].
44176238846SStefan Eßer
44276238846SStefan EßerOther Linux distros package it as a second-class alternative, usually as `bc-gh`
44376238846SStefan Eßeror `howard-bc`.
4443aa99676SStefan Eßer
445252884aeSStefan Eßer## Language
446252884aeSStefan Eßer
4477e5c51e5SStefan EßerThis `bc` is written in pure ISO C99, using POSIX 2008 APIs with custom Windows
4487e5c51e5SStefan Eßercompatibility code.
449252884aeSStefan Eßer
450252884aeSStefan Eßer## Commit Messages
451252884aeSStefan Eßer
452252884aeSStefan EßerThis `bc` uses the commit message guidelines laid out in [this blog post][10].
453252884aeSStefan Eßer
454252884aeSStefan Eßer## Semantic Versioning
455252884aeSStefan Eßer
456252884aeSStefan EßerThis `bc` uses [semantic versioning][11].
457252884aeSStefan Eßer
4584fca8e0fSStefan Eßer## AI-Free
4594fca8e0fSStefan Eßer
4604fca8e0fSStefan EßerThis repository is 100% AI-Free code.
4614fca8e0fSStefan Eßer
462252884aeSStefan Eßer## Contents
463252884aeSStefan Eßer
464252884aeSStefan EßerItems labeled with `(maintainer use only)` are not included in release source
465252884aeSStefan Eßertarballs.
466252884aeSStefan Eßer
467252884aeSStefan EßerFiles:
468252884aeSStefan Eßer
469252884aeSStefan Eßer	.gitignore           The git ignore file (maintainer use only).
4707e5c51e5SStefan Eßer	.gitattributes       The git attributes file (maintainer use only).
47110041e99SStefan Eßer	bcl.pc.in            A template pkg-config file for bcl.
472252884aeSStefan Eßer	configure            A symlink to configure.sh to make packaging easier.
473252884aeSStefan Eßer	configure.sh         The configure script.
474252884aeSStefan Eßer	LICENSE.md           A Markdown form of the BSD 2-clause License.
475252884aeSStefan Eßer	Makefile.in          The Makefile template.
47610041e99SStefan Eßer	NEWS.md              The changelog.
477252884aeSStefan Eßer	NOTICE.md            List of contributors and copyright owners.
478252884aeSStefan Eßer
479252884aeSStefan EßerFolders:
480252884aeSStefan Eßer
48178bc019dSStefan Eßer	benchmarks  A folder of benchmarks for various aspects of bc performance.
482252884aeSStefan Eßer	gen         The bc math library, help texts, and code to generate C source.
483252884aeSStefan Eßer	include     All header files.
484252884aeSStefan Eßer	locales     Locale files, in .msg format. Patches welcome for translations.
485252884aeSStefan Eßer	manuals     Manuals for both programs.
486252884aeSStefan Eßer	src         All source code.
48744d4804dSStefan Eßer	scripts     A bunch of shell scripts to help with development and building.
488252884aeSStefan Eßer	tests       All tests.
48910041e99SStefan Eßer	vs          Files needed for the build on Windows.
490252884aeSStefan Eßer
491252884aeSStefan Eßer[1]: https://www.gnu.org/software/bc/
492252884aeSStefan Eßer[4]: ./LICENSE.md
493252884aeSStefan Eßer[5]: ./manuals/build.md
494252884aeSStefan Eßer[7]: ./manuals/algorithms.md
495252884aeSStefan Eßer[8]: https://git.busybox.net/busybox/tree/miscutils/bc.c
496252884aeSStefan Eßer[9]: https://github.com/landley/toybox/blob/master/toys/pending/bc.c
497252884aeSStefan Eßer[10]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
498252884aeSStefan Eßer[11]: http://semver.org/
499252884aeSStefan Eßer[12]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html
5004fca8e0fSStefan Eßer[17]: https://git.gavinhoward.com/gavin/vim-bc
5014fca8e0fSStefan Eßer[18]: https://git.gavinhoward.com/gavin/bc_libs
502252884aeSStefan Eßer[19]: ./manuals/benchmarks.md
5034fca8e0fSStefan Eßer[20]: https://git.gavinhoward.com/gavin/bc
504252884aeSStefan Eßer[21]: https://gavinhoward.com/2020/04/i-am-moving-away-from-github/
505252884aeSStefan Eßer[22]: https://www.deepl.com/translator
5069a995fe1SStefan Eßer[23]: https://cgit.freebsd.org/src/tree/contrib/bc
5075d934bc0SStefan Eßer[24]: https://bugs.freebsd.org/
5085d934bc0SStefan Eßer[25]: https://reviews.freebsd.org/
50950696a6eSStefan Eßer[26]: ./manuals/bcl.3.md
51044d4804dSStefan Eßer[27]: https://en.wikipedia.org/wiki/Bus_factor
51144d4804dSStefan Eßer[28]: ./manuals/development.md
51278bc019dSStefan Eßer[29]: https://github.com/gavinhoward/bc
513d101cdd6SStefan Eßer[30]: ./manuals/bc/A.1.md#extended-library
514d101cdd6SStefan Eßer[31]: ./manuals/build.md#settings
51576238846SStefan Eßer[32]: https://android.googlesource.com/platform/external/bc/
51676238846SStefan Eßer[33]: https://github.com/gentoo/gentoo/blob/master/app-alternatives/bc/bc-0.ebuild#L8
51776238846SStefan Eßer[34]: https://www.linuxfromscratch.org/lfs/view/stable/chapter08/bc.html
51876238846SStefan Eßer[35]: https://github.com/apple-oss-distributions/bc/tree/main/bc
519