├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── simplog.c └── simplog.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/README.md -------------------------------------------------------------------------------- /simplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/simplog.c -------------------------------------------------------------------------------- /simplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntpeters/SimpleLogger/HEAD/simplog.h --------------------------------------------------------------------------------