10 lines
No EOL
119 B
C
10 lines
No EOL
119 B
C
// test-function-decl.c
|
|
int add(int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
|
|
int main(int argc, int argv)
|
|
{
|
|
return add(1, 2);
|
|
} |