├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_zh-CN.md ├── example ├── CMakeLists.txt ├── Makefile └── example.cpp ├── makefile ├── test ├── Makefile └── test.c ├── tlog.c └── tlog.h /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: WebKit 2 | PointerAlignment: Right -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .o 3 | build 4 | *.so 5 | *.o -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/example/example.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/makefile -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/test/test.c -------------------------------------------------------------------------------- /tlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/tlog.c -------------------------------------------------------------------------------- /tlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymumu/tinylog/HEAD/tlog.h --------------------------------------------------------------------------------