blob: 39f5d5231de22e029c54018cfb57d6c3ac1044a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef MY_HEADER_FILE_H
#define MY_HEADER_FILE_H
int returnInt();
int sum(int a, int b);
float percentage(int a, int b);
float FtoC(int fah);
float CtoF(int cel);
#endif MY_HEADER_FILE_H
|