包括来自另一个目录的头文件

时间:2011-09-28 09:56:11

标签: c compiler-errors include c-preprocessor

我有一个主目录A,其中包含两个子目录BC

目录B包含标头文件structures.c

#ifndef __STRUCTURES_H
#define __STRUCTURES_H
typedef struct __stud_ent__
{
    char name[20];
    int roll_num;
}stud;
#endif

目录C包含main.c代码:

#include<stdio.h>
#include<stdlib.h>
#include <structures.h>
int main()
{
    stud *value;
    value = malloc(sizeof(stud));
    free (value);
    printf("working \n");
    return 0;
}

但是我收到了一个错误:

main.c:3:24: error: structures.h: No such file or directory
main.c: In function ‘main’:
main.c:6: error: ‘stud’ undeclared (first use in this function)
main.c:6: error: (Each undeclared identifier is reported only once
main.c:6: error: for each function it appears in.)
main.c:6: error: ‘value’ undeclared (first use in this function)

structures.h文件包含到main.c中的正确方法是什么?

4 个答案:

答案 0 :(得分:37)

当引用头文件 relative 到c文件时,你应该使用#include "path/to/header.h"

表单#include <someheader.h>仅用于内部标头或显式添加的目录(在带有-I选项的gcc中)。

答案 1 :(得分:14)

#include "../b/structure.h"

取代

#include <structures.h>

然后进入c&amp;用

编译你的main.c.
gcc main.c

答案 2 :(得分:2)

如果您处理Makefile项目或只是从命令行运行代码,请使用

gcc -IC main.c

其中-I选项将您的C目录添加到要搜索头文件的目录列表中,这样您就可以在项目的任何位置使用#include "structures.h"

答案 3 :(得分:1)

如果要使用命令行参数,则可以提供gcc -idirafter ../b/ main.c

那么你不必在你的程序中做任何事情。