Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 23baffafb31f9ae20f709fb18d980c5e6c7947d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>


int func1 (void)
{
	printf("This is func1\n");
	return(1);
}

char * func2(void)
{
	printf("This is func2\n");
	return(0);
}

Back to the top