PackageName
 
Docs
Loading...
Searching...
No Matches
template.c
Go to the documentation of this file.
2
3int add(int pA, int pB) { return pA + pB; }
4
5int subtract(int pA, int pB) { return pA - pB; }
int add(int pA, int pB)
Add two integers.
Definition template.c:3
int subtract(int pA, int pB)
Subtract two integers.
Definition template.c:5