摘要: 【转载,非常不错的一篇博文,循序渐进,简单易懂】假设我们有下面这样的一个程序,源代码如下:/* main.c */#include <mytool1.h>#include <mytool2.h>int main(int argc,char **argv){mytool1_print("hello");mytool2_print("hello");}/* mytool1.h */#ifndef _MYTOOL_1_H#define _MYTOOL_1_Hvoid mytool1_print(char *print_str);#end 阅读全文
posted @ 2012-04-09 18:08 @且听风吟@ 阅读(271) 评论(0) 推荐(0)