summaryrefslogtreecommitdiffstats
path: root/winpr/libwinpr/library/test/TestLibraryB/TestLibraryB.c
blob: eac586e98dc681d555f162647999a06c219b8efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <winpr/spec.h>

DECLSPEC_EXPORT int FunctionA(int a, int b);
DECLSPEC_EXPORT int FunctionB(int a, int b);

int FunctionA(int a, int b)
{
	return (a + b); /* add */
}

int FunctionB(int a, int b)
{
	return (a - b); /* subtract */
}