Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
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
3
int
cadd(
int
a,
int
b) {
4
return
a + b;
5
}
6