summaryrefslogtreecommitdiff
path: root/Project1/header.h
blob: 943eee38c586664c58ab92fb82ad616dea7dd861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MY_HEADER_FILE_H
#define MY_HEADER_FILE_H

int math_func(int);

int math_func(int square = 2);

int math_func(int a, int b);

int math_func(int A, int B, int C, int = 2);

#endif MY_HEADER_FILE_H