v2 / vlib / v / tests / include_c_gen_fn_headers / cheader.h
9 lines · 7 sloc · 122 bytes · 8b991b158417aa21f0b0d8fa87af53df90272744
Raw
1#include <stdio.h>
2
3void hello_from_c() {
4 puts("Hello from C!");
5}
6
7int add_two_numbers(int a, int b) {
8 return a + b;
9}
10