tlang-c/wrappergen/example-c-code/example-lib.c

11 lines
135 B
C

#include <stdio.h>
#include "example.h"
int myfunction(int a,int b)
{
return a + b;
}
void printNum(int a)
{
printf("%i\n");
}