Function Logger
Updates
- Added native C++ support without having to call
extern "C"
in.cpp
files or files compiled with the C++ compiler
When using C++, you no longer have to use extern "C"
when including as seen here:
extern "C" {
#include "log.h"
}
You can now just do:
#include "log.h"