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;
}