Files
test_repo/add.c

4 lines
43 B
C
Raw Normal View History

2020-06-04 17:50:50 +08:00
int add(int a, int b)
{
return a + b;
}