天外有天,人外有人。
分类: LINUX
2013-09-04 22:48:32
#include "myfunction.h"
int myfunction(void){printf("Myfunction\n");return 0;}
#include #include "myfunction.h"
int main(void){myfunction();return 0;}
#ifndef _MYFUNCTION_H#define _MYFUNCTION_Hextern int myfunction(void);#endif