#include int main(void) { // make -C .. // gcc -g -Wall -I../.. test_log.c -L.. -lcore -o test_log // ./test_log init_lib_core(); LOG_NOTSET("Log notset"); LOG_DEBUG("Log debug"); LOG_INFO("Log info"); LOG_WARN("Log warn"); LOG_ERROR("Log error"); LOG_FATAL("Log fatal"); }