个人技术分享

上篇文章中,我们简单介绍了file_util.h中定义的各函数,今天我们来讲解如何实现头文件中定义的各函数。首先,在file_util.c中,我们需要引入相应的头文件:

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
#include "common_util.h"
#include "file_util.h"
#include "my_string.h"

我们使用#include指令来引入需要包含的头文件。头文件是包含函数声明、宏定义和其他类型定义的文件。

#include指令有两种使用形式:

  • 尖括号(<>):#include <stdio.h>
  • 双引号(""):#include "mystuff.h"

尖括号和双引号的主要区别在于编译器搜索头文件的路径不同:

  • 尖括号:编译器会首先在系统默认目录或尖括号内的工作目录下搜索头文件。这些目录通常是编译器预设的标准库目录。使用尖括号可以提高搜索效率,因为编译器不需要在当前工作目录中查找头文件。
  • 双引号:编译器会首先