This commit is contained in:
agra
2026-02-22 17:24:04 +02:00
parent 775dcb44cc
commit d3e574eae5
38 changed files with 16135 additions and 33 deletions

9
vendors/test_c/test.c vendored Normal file
View File

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

2
vendors/test_c/test.h vendored Normal file
View File

@@ -0,0 +1,2 @@
int add_numbers(int a, int b);
int multiply(int a, int b);