├── .travis.yml ├── LICENSE ├── README.md ├── bourne.cpp ├── bourne.hpp ├── sample.cc └── tests.cxx /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/README.md -------------------------------------------------------------------------------- /bourne.cpp: -------------------------------------------------------------------------------- 1 | #include "bourne.hpp" 2 | 3 | -------------------------------------------------------------------------------- /bourne.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/bourne.hpp -------------------------------------------------------------------------------- /sample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/sample.cc -------------------------------------------------------------------------------- /tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/bourne/HEAD/tests.cxx --------------------------------------------------------------------------------