10 lines
103 B
C
10 lines
103 B
C
#pragma once
|
|
#ifndef FUNC_H
|
|
#define FUNC_H
|
|
|
|
int f1(int num);
|
|
int g1(int num);
|
|
int g2(int num);
|
|
|
|
#endif
|