rust-interop/c/example.c

10 lines
123 B
C
Raw Normal View History

2024-08-19 10:52:05 +00:00
#include "example.h"
int add(int a, int b) {
return a + b;
}
void print_message() {
printf("Hello from C!\n");
}