Skip to content

Function Logger v1.0.1

Latest
Compare
Choose a tag to compare
@DarkAssassin23 DarkAssassin23 released this 04 Sep 03:16
· 2 commits to main since this release
67a80b7

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"