blob: c46d66b7e3ea245327aa4b00f04ad9a71a3068c4 [file] [log] [blame] [view]
Gavin Howard5be20722018-08-31 00:30:59 -06001# `bc`
Gavin Howard35221f02018-01-24 21:16:43 -07002
Gavin Howardae12d102020-04-09 10:44:46 -06003***WARNING: This project has moved to [https://git.yzena.com/][20] for [these
Gavin Howardf73c2332020-04-11 11:45:18 -06004reasons][21], though GitHub will remain a mirror.***
Gavin Howardbc4b57b2020-04-08 22:11:24 -06005
Gavin Howard86fc8ac2019-02-18 10:38:13 -07006This is an implementation of the [POSIX `bc` calculator][12] that implements
7[GNU `bc`][1] extensions, as well as the period (`.`) extension for the BSD
8flavor of `bc`.
Gavin Howard35221f02018-01-24 21:16:43 -07009
Gavin Howard92b3b7f2020-06-28 16:44:34 -060010For more information, see this `bc`'s full manual.
Gavin Howard2c63e812018-12-31 09:09:03 -070011
Gavin Howard0a4d75b2018-10-22 17:52:03 -060012This `bc` also includes an implementation of `dc` in the same binary, accessible
Gavin Howard5be34612019-05-25 10:00:32 -060013via a symbolic link, which implements all FreeBSD and GNU extensions. (If a
14standalone `dc` binary is desired, `bc` can be copied and renamed to `dc`.) The
15`!` command is omitted; I believe this poses security concerns and that such
Gavin Howardff8ad3f2018-10-25 18:36:06 -060016functionality is unnecessary.
Gavin Howard17b82252018-10-12 14:20:30 -060017
Gavin Howard92b3b7f2020-06-28 16:44:34 -060018For more information, see the `dc`'s full manual.
Gavin Howard2c63e812018-12-31 09:09:03 -070019
Gavin Howard940f9322021-04-17 07:56:38 -060020This `bc` also provides `bc`'s math as a library with C bindings, called `bcl`.
21
22For more information, see the full manual for `bcl`.
23
Gavin Howardb23cb382021-07-11 15:57:33 -060024## License
25
Gavin Howard0a4d75b2018-10-22 17:52:03 -060026This `bc` is Free and Open Source Software (FOSS). It is offered under the BSD
Gavin Howard880977e2019-01-24 10:06:28 -0700272-clause License. Full license text may be found in the [`LICENSE.md`][4] file.
Gavin Howard5715b042018-02-12 16:11:42 -070028
Gavin Howard32a59132019-02-02 09:43:15 -070029## Prerequisites
30
Gavin Howardf9f45cd2021-04-04 22:59:54 -060031This `bc` only requires either:
32
331. Windows 10 or later, or
342. A C99-compatible compiler and a (mostly) POSIX 2008-compatible system with
35 the XSI (X/Open System Interfaces) option group.
Gavin Howard32a59132019-02-02 09:43:15 -070036
Gavin Howardbeaf8fa2020-06-04 08:19:44 -060037Since POSIX 2008 with XSI requires the existence of a C99 compiler as `c99`, any
Gavin Howardbd90f2b2020-05-13 12:11:38 -060038POSIX and XSI-compatible system will have everything needed.
Gavin Howard990fe172019-02-02 11:32:40 -070039
Gavin Howardf9f45cd2021-04-04 22:59:54 -060040POSIX-compatible systems that are known to work:
Gavin Howard990fe172019-02-02 11:32:40 -070041
42* Linux
43* FreeBSD
Gavin Howard78d03c92019-04-06 23:36:47 -060044* OpenBSD
Gavin Howard7d25ecb2019-05-26 09:16:55 -060045* NetBSD
Gavin Howard22ba0962019-02-18 21:04:03 -070046* Mac OSX
Gavin Howarda595c0e2020-06-26 09:11:03 -060047* Solaris* (as long as the Solaris version supports POSIX 2008)
Gavin Howard29f1f482020-04-28 16:58:38 -060048* AIX
Gavin Howard9e0dccd2020-12-20 18:14:05 -070049* HP-UX* (except for history)
Gavin Howard990fe172019-02-02 11:32:40 -070050
Gavin Howardf9f45cd2021-04-04 22:59:54 -060051In addition, there is compatibility code to make this `bc` work on Windows.
52
Gavin Howard4e218822019-02-20 11:14:31 -070053Please submit bug reports if this `bc` does not build out of the box on any
Gavin Howardf9f45cd2021-04-04 22:59:54 -060054system.
Gavin Howard32a59132019-02-02 09:43:15 -070055
Gavin Howardf41ab452018-04-17 02:06:04 -060056## Build
Gavin Howarddf6890a2018-03-24 11:02:31 -060057
Gavin Howardc9737562021-05-13 13:05:23 -060058This `bc` should build unmodified on any POSIX-compliant system or on Windows
59starting with Windows 10 (though earlier versions may work).
60
61For more complex build requirements than the ones below, see the
62[build manual][5].
63
Gavin Howardf9f45cd2021-04-04 22:59:54 -060064### Windows
65
66There is no guarantee that this `bc` will work on any version of Windows earlier
67than Windows 10 (I cannot test on earlier versions), but it is guaranteed to
68work on Windows 10 at least.
69
70Also, if building with MSBuild, the MSBuild bundled with Visual Studio is
71required.
72
73**Note**: Unlike the POSIX-compatible platforms, only one build configuration is
74supported on Windows: extra math and prompt enabled, history and NLS (locale
75support) disabled, with both calculators built.
76
77#### `bc`
78
79To build `bc`, you can open the `bc.sln` file in Visual Studio, select the
80configuration, and build.
81
82You can also build using MSBuild with the following from the root directory:
83
84```
85msbuild -property:Configuration=<config> bc.sln
86```
87
88where `<config>` is either one of `Debug` or `Release`.
89
90#### `bcl` (Library)
91
92To build the library, you can open the `bcl.sln` file in Visual Studio, select
93the configuration, and build.
94
95You can also build using MSBuild with the following from the root directory:
96
97```
98msbuild -property:Configuration=<config> bcl.sln
99```
100
101where `<config>` is either one of `Debug` or `Release`.
102
103### POSIX-Compatible Systems
104
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600105On POSIX-compatible systems, `bc` is built as `bin/bc` and `dc` is built as
106`bin/dc` by default. On Windows, they are built as `Release/bc/bc.exe` and
107`Release/bc/dc.exe`.
108
109**Note**: On Windows, `dc.exe` is just copied from `bc.exe`; it is not linked.
110Patches are welcome for a way to do that.
111
112#### Default
Gavin Howardefc45242019-01-04 15:30:54 -0700113
Gavin Howard573c9392019-01-04 15:27:52 -0700114For the default build with optimization, use the following commands in the root
115directory:
Gavin Howard6235f0f2018-10-25 15:50:00 -0600116
117```
Gavin Howard79f605c2019-01-08 13:08:21 -0700118./configure.sh -O3
Gavin Howard0f449002018-12-12 03:35:27 -0700119make
Gavin Howardefc45242019-01-04 15:30:54 -0700120```
121
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600122#### One Calculator
Gavin Howard78d03c92019-04-06 23:36:47 -0600123
124To only build `bc`, use the following commands:
125
126```
127./configure.sh --disable-dc
128make
129```
130
131To only build `dc`, use the following commands:
132
133```
134./configure.sh --disable-bc
135make
136```
137
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600138#### Debug
Gavin Howardefc45242019-01-04 15:30:54 -0700139
140For debug builds, use the following commands in the root directory:
141
142```
Gavin Howard79f605c2019-01-08 13:08:21 -0700143./configure.sh -g
Gavin Howardefc45242019-01-04 15:30:54 -0700144make
Gavin Howard6235f0f2018-10-25 15:50:00 -0600145```
146
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600147#### Install
Gavin Howard8a6fda92019-01-04 15:33:57 -0700148
Gavin Howard43967322019-01-23 20:52:41 -0700149To install, use the following command:
150
151```
152make install
153```
154
Gavin Howard880977e2019-01-24 10:06:28 -0700155By default, `bc` and `dc` will be installed in `/usr/local`. For installing in
Gavin Howard5be34612019-05-25 10:00:32 -0600156other locations, use the `PREFIX` environment variable when running
157`configure.sh` or pass the `--prefix=<prefix>` option to `configure.sh`. See the
158[build manual][5], or run `./configure.sh --help`, for more details.
159
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600160#### Library
Gavin Howard7475bee2020-11-25 22:25:37 -0700161
162This `bc` does provide a way to build a math library with C bindings. This is
163done by the `-a` or `--library` options to `configure.sh`:
164
165```
166./configure.sh -a
167```
168
169When building the library, the executables are not built. For more information,
170see the [build manual][5].
171
Gavin Howard8b5e7ab2020-11-25 22:29:34 -0700172The library API can be found in [`manuals/bcl.3.md`][26] or `man bcl` once the
173library is installed.
174
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600175The library is built as `bin/libbcl.a` on POSIX-compatible systems or as
176`Release/bcl/bcl.lib` on Windows.
Gavin Howard4fcecf02020-11-26 08:58:39 -0700177
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600178#### Package and Distro Maintainers
Gavin Howard5be34612019-05-25 10:00:32 -0600179
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600180##### Recommended Compiler
Gavin Howard936bc9a2019-07-05 08:09:31 -0600181
182When I ran benchmarks with my `bc` compiled under `clang`, it performed much
183better than when compiled under `gcc`. I recommend compiling this `bc` with
184`clang`.
185
Gavin Howardfa1a93d2020-06-06 12:17:06 -0600186I also recommend building this `bc` with C11 if you can because `bc` will detect
187a C11 compiler and add `_Noreturn` to any relevant function(s).
188
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600189##### Recommended Optimizations
Gavin Howard31f180b2019-06-14 08:08:38 -0600190
191I wrote this `bc` with Separation of Concerns, which means that there are many
192small functions that could be inlined. However, they are often called across
193file boundaries, and the default optimizer can only look at the current file,
194which means that they are not inlined.
195
196Thus, because of the way this `bc` is built, it will automatically be slower
197than other `bc` implementations when running scripts with no math. (My `bc`'s
198math is *much* faster, so any non-trivial script should run faster in my `bc`.)
199
200Some, or all, of the difference can be made up with the right optimizations. The
201optimizations I recommend are:
202
2031. `-O3`
2042. `-flto` (link-time optimization)
Gavin Howard31f180b2019-06-14 08:08:38 -0600205
206in that order.
207
208Link-time optimization, in particular, speeds up the `bc` a lot. This is because
209when link-time optimization is turned on, the optimizer can look across files
210and inline *much* more heavily.
211
Gavin Howarde919f3f2020-06-16 17:23:04 -0600212However, I recommend ***NOT*** using `-march=native`. Doing so will reduce this
213`bc`'s performance, at least when building with link-time optimization. See the
214[benchmarks][19] for more details.
Gavin Howard31f180b2019-06-14 08:08:38 -0600215
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600216##### Stripping Binaries
Gavin Howard96ac4272019-11-27 22:16:26 -0700217
218By default, non-debug binaries are stripped, but stripping can be disabled with
219the `-T` option to `configure.sh`.
220
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600221##### Using This `bc` as an Alternative
Gavin Howardeba65c72019-05-25 15:14:33 -0600222
223If this `bc` is packaged as an alternative to an already existing `bc` package,
224it is possible to rename it in the build to prevent name collision. To prepend
225to the name, just run the following:
226
227```
228EXECPREFIX=<some_prefix> ./configure.sh
229```
230
231To append to the name, just run the following:
232
233```
234EXECSUFFIX=<some_suffix> ./configure.sh
235```
236
237If a package maintainer wishes to add both a prefix and a suffix, that is
238allowed.
239
Gavin Howard26ce5182020-04-29 16:25:57 -0600240**Note**: The suggested name (and package name) when `bc` is not available is
241`bc-gh`.
Gavin Howardeba65c72019-05-25 15:14:33 -0600242
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600243##### Karatsuba Number
Gavin Howardeba65c72019-05-25 15:14:33 -0600244
Gavin Howard5be34612019-05-25 10:00:32 -0600245Package and distro maintainers have one tool at their disposal to build this
Gavin Howard781e6eb2021-06-15 11:01:29 -0600246`bc` in the optimal configuration: `scripts/karatsuba.py`.
Gavin Howard5be34612019-05-25 10:00:32 -0600247
248This script is not a compile-time or runtime prerequisite; it is for package and
249distro maintainers to run once when a package is being created. It finds the
250optimal Karatsuba number (see the [algorithms manual][7] for more information)
251for the machine that it is running on.
252
Gavin Howard96b66a42020-05-14 12:37:39 -0600253The easiest way to run this script is with `make karatsuba`.
254
Gavin Howard5be34612019-05-25 10:00:32 -0600255If desired, maintainers can also skip running this script because there is a
256sane default for the Karatsuba number.
Gavin Howard8a6fda92019-01-04 15:33:57 -0700257
Gavin Howard255526b2018-02-09 12:10:14 -0700258## Status
259
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600260This `bc` is robust.
261
Gavin Howard27c5e7f2018-10-25 10:57:36 -0600262It is well-tested, fuzzed, and fully standards-compliant (though not certified)
Gavin Howard31772bd2019-01-24 10:14:01 -0700263with POSIX `bc`. The math has been tested with 40+ million random problems, so
Gavin Howardf406f802018-10-26 10:26:14 -0600264it is as correct as I can make it.
265
Gavin Howard89c13d02019-01-04 12:36:45 -0700266This `bc` can be used as a drop-in replacement for any existing `bc`. This `bc`
267is also compatible with MinGW toolchains, though history is not supported on
268Windows.
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600269
Gavin Howardd7fc56c2019-07-03 18:55:03 -0600270In addition, this `bc` is considered complete; i.e., there will be no more
271releases with additional features. However, it *is* actively maintained, so if
Gavin Howardea694cb2019-07-03 19:28:38 -0600272any bugs are found, they will be fixed in new releases. Also, additional
273translations will also be added as they are provided.
Gavin Howardd7fc56c2019-07-03 18:55:03 -0600274
Gavin Howard470bf612021-06-14 23:07:08 -0600275### Development
276
277If I (Gavin D. Howard) get [hit by a bus][27] and future programmers need to
278handle work themselves, the best place to start is the [Development manual][28].
279
Gavin Howard3ccdab82021-07-02 00:35:40 -0600280## Vim Syntax
281
Gavin Howardb23cb382021-07-11 15:57:33 -0600282I have developed (using other people's code to start) [`vim` syntax files][17]
Gavin Howard3ccdab82021-07-02 00:35:40 -0600283for this `bc` and `dc`, including the extensions.
284
285## `bc` Libs
286
Gavin Howardb23cb382021-07-11 15:57:33 -0600287I have gathered some excellent [`bc` and `dc` libraries][18]. These libraries
Gavin Howard3ccdab82021-07-02 00:35:40 -0600288may prove useful to any serious users.
289
Gavin Howard3c6786e2021-06-16 16:34:48 -0600290## Comparison to GNU `bc`
Gavin Howard4c83f892019-05-25 09:23:20 -0600291
Gavin Howard3c6786e2021-06-16 16:34:48 -0600292This `bc` compares favorably to GNU `bc`.
Gavin Howard4c83f892019-05-25 09:23:20 -0600293
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600294* This `bc` builds natively on Windows.
Gavin Howard4c83f892019-05-25 09:23:20 -0600295* It has more extensions, which make this `bc` more useful for scripting.
296* This `bc` is a bit more POSIX compliant.
297* It has a much less buggy parser. The GNU `bc` will give parse errors for what
298 is actually valid `bc` code, or should be. For example, putting an `else` on
299 a new line after a brace can cause GNU `bc` to give a parse error.
300* This `bc` has fewer crashes.
Gavin Howardaadd4362019-06-05 22:28:31 -0600301* GNU `bc` calculates the wrong number of significant digits for `length(x)`.
Gavin Howard4c83f892019-05-25 09:23:20 -0600302* GNU `bc` will sometimes print numbers incorrectly. For example, when running
303 it on the file `tests/bc/power.txt` in this repo, GNU `bc` gets all the right
Gavin Howard21a2f962019-06-13 08:27:02 -0600304 answers, but it fails to wrap the numbers at the proper place when outputting
305 to a file.
Gavin Howard4c83f892019-05-25 09:23:20 -0600306* This `bc` is faster. (See [Performance](#performance).)
307
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600308### Performance
309
Gavin Howard4c83f892019-05-25 09:23:20 -0600310Because this `bc` packs more than `1` decimal digit per hardware integer, this
311`bc` is faster than GNU `bc` and can be *much* faster. Full benchmarks can be
312found at [manuals/benchmarks.md][19].
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600313
Gavin Howard8bc48852019-05-25 09:33:47 -0600314There is one instance where this `bc` is slower: if scripts are light on math.
315This is because this `bc`'s intepreter is slightly slower than GNU `bc`, but
316that is because it is more robust. See the [benchmarks][19].
317
Gavin Howard573c9392019-01-04 15:27:52 -0700318## Algorithms
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600319
Gavin Howard880977e2019-01-24 10:06:28 -0700320To see what algorithms this `bc` uses, see the [algorithms manual][7].
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600321
Gavin Howard7876e782019-02-20 16:45:10 -0700322## Locales
323
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600324Currently, there is no locale support on Windows.
325
326Additionally, this `bc` only has support for English (and US English), French,
Gavin Howarda05e2212020-04-29 10:48:42 -0600327German, Portuguese, Dutch, Polish, Russian, Japanese, and Chinese locales.
328Patches are welcome for translations; use the existing `*.msg` files in
329`locales/` as a starting point.
330
331In addition, patches for improvements are welcome; the last two messages in
332Portuguese were made with Google Translate, and the Dutch, Polish, Russian,
333Japanese, and Chinese locales were all generated with [DeepL][22].
Stefan Esserb1346462019-04-20 18:14:00 +0200334
Gavin Howarddd50a582019-05-09 15:26:18 -0600335The message files provided assume that locales apply to all regions where a
336language is used, but this might not be true for, e.g., `fr_CA` and `fr_CH`.
337Any corrections or a confirmation that the current texts are acceptable for
Stefan Esserb1346462019-04-20 18:14:00 +0200338those regions would be appreciated, too.
Gavin Howardb2230162019-03-16 21:44:19 -0600339
Gavin Howard573c9392019-01-04 15:27:52 -0700340## Other Projects
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600341
Gavin Howard573c9392019-01-04 15:27:52 -0700342Other projects based on this bc are:
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600343
Gavin Howard880977e2019-01-24 10:06:28 -0700344* [busybox `bc`][8]. The busybox maintainers have made their own changes, so any
345 bugs in the busybox `bc` should be reported to them.
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600346
Gavin Howard880977e2019-01-24 10:06:28 -0700347* [toybox `bc`][9]. The maintainer has also made his own changes, so bugs in the
348 toybox `bc` should be reported there.
Gavin Howard255526b2018-02-09 12:10:14 -0700349
Gavin Howard79a1c822020-07-06 17:22:05 -0600350* [FreeBSD `bc`][23]. While the `bc` in FreeBSD is kept up-to-date, it is better
Gavin Howard2c6ab7a2020-07-27 08:24:03 -0600351 to [report bugs there][24], as well as [submit patches][25], and the
352 maintainers of the package will contact me if necessary.
Gavin Howard79a1c822020-07-06 17:22:05 -0600353
Gavin Howard5715b042018-02-12 16:11:42 -0700354## Language
355
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600356This `bc` is written in pure ISO C99, using POSIX 2008 APIs with custom Windows
357compatibility code.
Gavin Howard5715b042018-02-12 16:11:42 -0700358
Gavin Howard5715b042018-02-12 16:11:42 -0700359## Commit Messages
360
Gavin Howard880977e2019-01-24 10:06:28 -0700361This `bc` uses the commit message guidelines laid out in [this blog post][10].
Gavin Howard5715b042018-02-12 16:11:42 -0700362
363## Semantic Versioning
364
Gavin Howard880977e2019-01-24 10:06:28 -0700365This `bc` uses [semantic versioning][11].
Gavin Howard5715b042018-02-12 16:11:42 -0700366
Gavin Howard5715b042018-02-12 16:11:42 -0700367## Contents
368
Gavin Howard9a3ff002019-01-23 20:53:41 -0700369Items labeled with `(maintainer use only)` are not included in release source
Gavin Howardd6269bf2019-01-07 19:15:36 -0700370tarballs.
371
Gavin Howard5715b042018-02-12 16:11:42 -0700372Files:
373
Gavin Howardf74beef2019-04-01 14:11:44 -0600374 .gitignore The git ignore file (maintainer use only).
Gavin Howardf9f45cd2021-04-04 22:59:54 -0600375 .gitattributes The git attributes file (maintainer use only).
376 bc.sln The Visual Studio solution file for bc.
377 bc.vcxproj The Visual Studio project file for bc.
378 bc.vcxproj.filters The Visual Studio filters file for bc.
379 bcl.sln The Visual Studio solution file for bcl.
380 bcl.vcxproj The Visual Studio project file for bcl.
381 bcl.vcxproj.filters The Visual Studio filters file for bcl.
Gavin Howard7a45a982020-03-20 10:07:04 -0600382 configure A symlink to configure.sh to make packaging easier.
Gavin Howardf74beef2019-04-01 14:11:44 -0600383 configure.sh The configure script.
Gavin Howardf74beef2019-04-01 14:11:44 -0600384 LICENSE.md A Markdown form of the BSD 2-clause License.
Gavin Howardf74beef2019-04-01 14:11:44 -0600385 Makefile.in The Makefile template.
386 NOTICE.md List of contributors and copyright owners.
387 RELEASE.md A checklist for making a release (maintainer use only).
Gavin Howard5715b042018-02-12 16:11:42 -0700388
389Folders:
390
Gavin Howard52111622019-01-24 10:23:31 -0700391 gen The bc math library, help texts, and code to generate C source.
Gavin Howard3157edf2018-10-15 08:28:10 -0600392 include All header files.
Gavin Howard7876e782019-02-20 16:45:10 -0700393 locales Locale files, in .msg format. Patches welcome for translations.
Gavin Howard0386d242019-01-04 15:35:17 -0700394 manuals Manuals for both programs.
Gavin Howard54eafec2018-10-12 14:23:56 -0600395 src All source code.
Gavin Howard781e6eb2021-06-15 11:01:29 -0600396 scripts A bunch of shell scripts to help with development and building.
Gavin Howard54eafec2018-10-12 14:23:56 -0600397 tests All tests.
Gavin Howard0a4d75b2018-10-22 17:52:03 -0600398
Gavin Howard880977e2019-01-24 10:06:28 -0700399[1]: https://www.gnu.org/software/bc/
Gavin Howard880977e2019-01-24 10:06:28 -0700400[4]: ./LICENSE.md
401[5]: ./manuals/build.md
Gavin Howard880977e2019-01-24 10:06:28 -0700402[7]: ./manuals/algorithms.md
403[8]: https://git.busybox.net/busybox/tree/miscutils/bc.c
404[9]: https://github.com/landley/toybox/blob/master/toys/pending/bc.c
405[10]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
406[11]: http://semver.org/
Gavin Howard86fc8ac2019-02-18 10:38:13 -0700407[12]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html
Gavin Howardb23cb382021-07-11 15:57:33 -0600408[17]: https://git.yzena.com/gavin/vim-bc
409[18]: https://git.yzena.com/gavin/bc_libs
Gavin Howard4c83f892019-05-25 09:23:20 -0600410[19]: ./manuals/benchmarks.md
Gavin Howard030a7542020-04-09 10:41:07 -0600411[20]: https://git.yzena.com/gavin/bc
Gavin Howard409599c2020-04-08 22:22:08 -0600412[21]: https://gavinhoward.com/2020/04/i-am-moving-away-from-github/
Gavin Howarda05e2212020-04-29 10:48:42 -0600413[22]: https://www.deepl.com/translator
Gavin Howard4e6e7992021-02-07 23:32:13 -0700414[23]: https://cgit.freebsd.org/src/tree/contrib/bc
Gavin Howard3c2febe2020-07-28 19:43:28 -0600415[24]: https://bugs.freebsd.org/
Gavin Howard2c6ab7a2020-07-27 08:24:03 -0600416[25]: https://reviews.freebsd.org/
Gavin Howard8b5e7ab2020-11-25 22:29:34 -0700417[26]: ./manuals/bcl.3.md
Gavin Howard470bf612021-06-14 23:07:08 -0600418[27]: https://en.wikipedia.org/wiki/Bus_factor
419[28]: ./manuals/development.md