commit | f75ffd82ef6cee9d9530e5826c21cd251d9a6540 | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Sat Mar 24 08:40:10 2018 -0600 |
committer | Gavin Howard <yzena.tech@gmail.com> | Tue Aug 28 17:11:15 2018 -0600 |
tree | 0d276a1b30f7b5b6786c3171afc8ace8d012162c | |
parent | 6a11d7968b78b7d9f71a9759ffca506c399ab102 [diff] |
Rearrange the source files
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.
This bc
is in alpha stage, so it is ready for testing in the wild, but it is not ready to be officially distributed as an official part of any project.
This bc
is written in pure ISO C99.
This bc
uses the git workflow described in this post. Developers who want to contribute are encouraged to read that post carefully.
For feature branches, it uses rebase + merge --no--ff
(option 3). It also uses a develop
/master
split. (Main development is on develop
, and master
just points to the latest tagged release to make it easy for users to get the latest release.)
This bc
uses the commit message guidelines laid out in this blog post.
This bc
uses semantic versioning.
Every folder contains a README file which lists the purposes for the files and folders in that directory.
Files:
LICENSE.md A Markdown the BSD 0-clause License. NOTICE.md List of contributors and copyright owners.
Folders:
docs Contains all of the documentation (currently empty). include Contains all of the public header files. src All source code. tests Tests.