码迷,mamicode.com
首页 > 其他好文 > 详细

GCC 多文件编辑

时间:2014-10-09 01:37:28      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   文件   sp   div   

GCC编译多个C文件 
下午做了一个小的程序,定义了三个文件:getop.h,getop.c,calcDemo.c

显然getop.h是针对getop.c的,而在calcDemo.c中要调用到getop.c中的东西。

首先给出每个文件的结构图,为了更简单的说明,函数都空实现。

getop.h:

#ifndef _H_GETOP
#define _H_GETOP
 int getch(void);
 void ungetch(int c);
 int getop(char s[]);
#endif

getop.c

 

#include <stdio.h>
#include <ctype.h>
#define NUMBER ‘0‘
int getch(void);
void ungetch(int);


int getop(char s[])
{
 return 0;

}

#define BUFSIZE 100
char buf[BUFSIZE];
int bufp =0;

int getch(void)
{
  return 0;
}

void ungetch(int c)
{

}

calcDemo.c

#include <stdio.h>
#include <stdlib.h>
#include "getop.h" //只需这样引用即可

 

最后,即是利用gcc来编译这几个文件:

gcc getop.c calcDemo.c -o output.out

编译后的目标文件即为:output.out

然后执行:./output.out即可

来源于:http://www.cnblogs.com/hdchild/archive/2009/11/07/1598178.html

GCC 多文件编辑

标签:style   blog   http   color   io   ar   文件   sp   div   

原文地址:http://www.cnblogs.com/yingsi/p/4011945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!