, , :
int func2(int x){
return 0;
}
, . , , , . func2.h :
#ifndef HEADER_FUNC2_H
#define HEADER_FUNC2_H
int func2(int x);
#endif
#ifndef HEADER_FUNC2_H , , , .
func2.c :
int func2(int x){
return 0;
}
func2, . #include "func2.h". , , func2 randomfile.c, :
#include "func2.h"
func2(1);
- , .