gitextract_z8twfn65/ ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── TODO.md ├── examples/ │ ├── CMakeLists.txt │ ├── args_eval.c │ ├── custom_output.c │ ├── file_output.c │ └── hello.c ├── tests/ │ ├── CMakeLists.txt │ ├── filesize_check.c │ ├── perf/ │ │ ├── CMakeLists.txt │ │ ├── run_tests.py │ │ ├── test_executable_size.cpp │ │ ├── test_speed.cpp │ │ ├── test_switch.h │ │ └── time_it.py │ ├── test_aux_spec.c │ ├── test_builtin_output_facilities.c │ ├── test_call_site_size_censoring.c │ ├── test_call_site_size_conditional.c │ ├── test_call_site_size_fmt_args.c │ ├── test_call_site_size_msg_only.c │ ├── test_censoring.c │ ├── test_compilation_cpp.cpp │ ├── test_conditional.c │ ├── test_decoration.main.c │ ├── test_decoration.module.c │ ├── test_externally_defined_state.c │ ├── test_externally_defined_state_cpp.cpp │ ├── test_log_level_override.c │ ├── test_log_level_switches.c │ ├── test_log_message_content.c │ ├── test_private_parts.c │ ├── test_source_location.c │ ├── zf_log.h.master │ └── zf_test.h ├── zf_log/ │ ├── CMakeLists.txt │ ├── zf_log.c │ └── zf_log.h └── zf_log-config.cmake.in