Files
sx/vendors/test_c/test.c
2026-02-22 17:24:04 +02:00

10 lines
121 B
C

#include "test.h"
int add_numbers(int a, int b) {
return a + b;
}
int multiply(int a, int b) {
return a * b;
}