v2 / vlib / v / tests / project_with_c_code / mod1 / c / header.h
10 lines · 7 sloc · 107 bytes · daff0850336887fb49b22cef70c1282d78867e72
Raw
1#ifndef ADD_H
2#define ADD_H
3
4int cadd(int a, int b);
5
6struct MyStruct {
7 int UppercaseField;
8};
9
10#endif
11