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

11 lines
135 B
C
Raw Permalink Normal View History

2023-04-24 18:41:46 +00:00
#include <stdio.h>
#include "example.h"
int myfunction(int a,int b)
{
return a + b;
}
void printNum(int a)
{
printf("%i\n");
}