mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
12 lines
116 B
C
12 lines
116 B
C
#include "math.h"
|
|
|
|
int add(int a1, int a2)
|
|
{
|
|
return a1 + a2;
|
|
}
|
|
|
|
int substract(int a1, int a2)
|
|
{
|
|
return a1 - a2;
|
|
}
|