PackageName
 
Docs
Loading...
Searching...
No Matches
template.c File Reference

Go to the source code of this file.

Functions

int add (int pA, int pB)
 Add two integers.
 
int subtract (int pA, int pB)
 Subtract two integers.
 

Function Documentation

◆ add()

int add ( int pA,
int pB )

Add two integers.

Parameters
pAFirst integer
pBSecond integer
Returns
int Sum of the two integers

Definition at line 3 of file template.c.

3{ return pA + pB; }

◆ subtract()

int subtract ( int pA,
int pB )

Subtract two integers.

Parameters
pAFirst integer
pBSecond integer
Returns
int Difference of the two integers

Definition at line 5 of file template.c.

5{ return pA - pB; }