slovo/examples/ffi/exp-6-c-add/c_add.c
2026-05-22 08:38:43 +02:00

6 lines
87 B
C

#include <stdint.h>
int32_t c_add(int32_t lhs, int32_t rhs) {
return lhs + rhs;
}