Skip to content

Instantly share code, notes, and snippets.

View iamOgunyinka's full-sized avatar

Joshua iamOgunyinka

View GitHub Profile
@mikeando
mikeando / Demo.c
Last active June 15, 2024 05:18
Example of using C++ from C.
#include "HMyClass.h"
#include <stdio.h>
void my_eh( const char * error_message, void * unused)
{
printf("my_eh: %s\n", error_message);
}
int main()
{