v2 / vlib / v / tests / project_with_c_code / mod1 / c / implementation.c
5 lines · 4 sloc · 66 bytes · eed7c91e87468179b8c074fd68a56ace1f6093f6
Raw
1#include "header.h"
2
3int cadd(int a, int b) {
4 return a + b;
5}
6