commit | 2192547c9aca00b53fd2f7fa08b0a5649b240a6b | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Sat Sep 29 19:29:25 2018 -0600 |
committer | Gavin Howard <yzena.tech@gmail.com> | Sat Sep 29 19:29:25 2018 -0600 |
tree | 8117c00870687a2b51944636f33e8ec34a9289ea | |
parent | 4c2a13e01a0e2828d75091b44330de78811b2875 [diff] |
Do runtime stack checks
bc
This is an implementation of POSIX bc
that implements GNU bc
extensions, as well as the period (.
) extension for the BSD bc.
This bc
is Free and Open Source Software (FOSS). It is licensed under the BSD 0-clause License.
To build, use the following commands:
make make install
This bc
supports CC
, CFLAGS
, CPPFLAGS
, LDFLAGS
, LDLIBS
, PREFIX
, and DESTDIR
make
variables. Users can also create a file named config.mak
in the root directory to control make
.
There is also a make help
command to list all targets and options.
This bc
is in beta stage. It has been well-tested and fuzzed, but has not yet been proven in the wild.
This bc
is written in pure ISO C99.
This bc
uses the commit message guidelines laid out in this blog post.
This bc
uses semantic versioning.
Files:
install.sh Install script from musl libc. LICENSE.md A Markdown form of the BSD 0-clause License. Makefile The Makefile. NOTICE.md List of contributors and copyright owners. RELEASE.md A checklist for making a release. TODO.md A TODO list.
Folders:
include All header files. lib The bc math library and code to generate C source for it. src All source code. tests All tests. toybox Files to cut a release into toybox. (Maintainer use only.)