├── Makefile ├── README.md ├── log.c ├── log.h ├── log ├── log_file.c ├── log_file.h ├── log_stream.c └── log_stream.h ├── lz4 ├── lz4.c ├── lz4.h ├── lz4_file.c └── lz4_file.h ├── sample └── sample.c └── util ├── aes.c ├── error.h ├── list.c ├── list.h ├── md5.c ├── md5.h ├── timer.c ├── timer.h ├── trace.c └── trace.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/README.md -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log.h -------------------------------------------------------------------------------- /log/log_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log/log_file.c -------------------------------------------------------------------------------- /log/log_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log/log_file.h -------------------------------------------------------------------------------- /log/log_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log/log_stream.c -------------------------------------------------------------------------------- /log/log_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/log/log_stream.h -------------------------------------------------------------------------------- /lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/lz4/lz4.c -------------------------------------------------------------------------------- /lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/lz4/lz4.h -------------------------------------------------------------------------------- /lz4/lz4_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/lz4/lz4_file.c -------------------------------------------------------------------------------- /lz4/lz4_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/lz4/lz4_file.h -------------------------------------------------------------------------------- /sample/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/sample/sample.c -------------------------------------------------------------------------------- /util/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/aes.c -------------------------------------------------------------------------------- /util/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/error.h -------------------------------------------------------------------------------- /util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/list.c -------------------------------------------------------------------------------- /util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/list.h -------------------------------------------------------------------------------- /util/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/md5.c -------------------------------------------------------------------------------- /util/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/md5.h -------------------------------------------------------------------------------- /util/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/timer.c -------------------------------------------------------------------------------- /util/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/timer.h -------------------------------------------------------------------------------- /util/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/trace.c -------------------------------------------------------------------------------- /util/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prophetss/C-log/HEAD/util/trace.h --------------------------------------------------------------------------------