Hello! I had to add following code to make compiling in C++ possible. I think it should be added to the library.
In schrift.h:
// Just before first struct declarations
#ifdef __cplusplus
extern "C" {
#endif
// (schrift.h code here...)
// Before the last #endif
#ifdef __cplusplus
}
#endif
Hello! I had to add following code to make compiling in C++ possible. I think it should be added to the library. In schrift.h: