├── .clang-format ├── .gitignore ├── .travis.yml ├── README.md ├── limlog.h └── tests ├── Benchmark.cpp ├── BlockingBufferTest.cpp ├── ItoaTest.cpp ├── Makefile └── Test.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/README.md -------------------------------------------------------------------------------- /limlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/limlog.h -------------------------------------------------------------------------------- /tests/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/tests/Benchmark.cpp -------------------------------------------------------------------------------- /tests/BlockingBufferTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/tests/BlockingBufferTest.cpp -------------------------------------------------------------------------------- /tests/ItoaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/tests/ItoaTest.cpp -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxhio/limlog/HEAD/tests/Test.h --------------------------------------------------------------------------------