欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

include custom head file

程序员文章站 2024-03-20 20:57:22
...
前面已经看到GCC编译时分成4个步骤,第一步是预处理, 其中就包含了include 头文件.
C通过头文件可以调用其他c文件中的函数, 如果要共享变量, 变量定义时需使用extern .

举个例子 : 
封装函数 : 
[[email protected] zzz]# cat encrypt.c
void encrypt(char *msg) {
  while (* msg) {
    *msg = *msg ^ 31;
    msg++;
  }
}

封装函数的头文件 : 
[[email protected] zzz]# cat encrypt.h
void encrypt(char * msg);


主函数 : 
[[email protected] zzz]# cat a.c
#include <stdio.h>  //头文件放在/usr/include 或/usr/local/include 中或者编译时使用-I的目录中使用尖括号.
#include "encrypt.h"  //头文件如果放在本地目录或相对目录或绝对目录时可使用双引号

int main() {
  char msg[80];
  while(fgets(msg,80,stdin)) {
    printf("original msg:%s\n", msg);
    // encode
    encrypt(msg);
    printf("encoded msg:%s\n", msg);
    // decode
    encrypt(msg);
    printf("decoded msg:%s\n", msg);
  }
  return 0;
}

编译时需要指出所有用到的C文件( 这里是 a.c 和 encrypt.c ).
gcc -O3 -Wall -Wextra -Werror -g ./a.c ./encrypt.c -o a
改为尖括号的话编译命令要改一下, 添加-I 或者 把这个头文件拷贝到/usr/include里面才可以正常编译.

[[email protected] zzz]# gcc -O3 -Wall -Wextra -Werror -g ./a.c ./encrypt.c -o a && ./a
./a.c:2:21: error: encrypt.h: No such file or directory
cc1: warnings being treated as errors
./a.c: In function ‘main’:
./a.c:9: warning: implicit declaration of function ‘encrypt’

把encrypt.h 拷贝到/usr/include中正常编译.
[[email protected] zzz]# cp encrypt.h /usr/include/
[[email protected] zzz]# gcc -O3 -Wall -Wextra -Werror -g ./a.c ./encrypt.c -o a

假设encrypt.h头文件在/root/zzz里面, 添加-I/root/zzz 正常编译.
[[email protected] zzz]# gcc -O3 -Wall -Wextra -Werror -g -I/root/zzz ./a.c ./encrypt.c -o a