Sign in
eclipse
/
linuxtools
/
org.eclipse.linuxtools
/
master
/
.
/
libhover
/
org.eclipse.linuxtools.cdt.libhover.devhelp.tests
/
devhelp
/
src
/
test1
/
test1.c
blob: 86ed065a9b14485c65a9af6c6ded1c62ce295aa6 [
file
] [
log
] [
blame
]
/**
* test1:
* @x: input integer
* @y: 2nd input integer
*
* Adds two digits together
*
* Returns: sum of x and y
*
**/
int
test1
(
int
x
,
int
y
)
{
return
x
+
y
;
}