aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/UnitTests/2002-05-02-ArgumentTest.c
blob: a5dbb0fabdb2d4cf49fe17bebe691e7c58982cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
extern int printf(const char *str, ...);

void testfunc(short s, float X, char C, long long LL, int I, double D) {
	printf("%d, %f, %d, %lld, %d, %f\n", s, X, C, LL, I, D);
}

int main() {
	testfunc(12, 1.245f, 'x', 123456677890LL, -10, 45e14);
        return 0;
}