C语言中头文件#include "dos.h"中包涵哪些库函数?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言中头文件#include "dos.h"中包涵哪些库函数?相关的知识,希望对你有一定的参考价值。

C/C++头文件一览
C、传统 C++

#include <assert.h> //设定插入点
#include <ctype.h> //字符处理
#include <errno.h> //定义错误码
#include <float.h> //浮点数处理
#include <fstream.h> //文件输入/输出
#include <iomanip.h> //参数化输入/输出
#include <iostream.h> //数据流输入/输出
#include <limits.h> //定义各种数据类型最值常量
#include <locale.h> //定义本地化函数
#include <math.h> //定义数学函数
#include <stdio.h> //定义输入/输出函数
#include <stdlib.h> //定义杂项函数及内存分配函数
#include <string.h> //字符串处理
#include <strstrea.h> //基于数组的输入/输出
#include <time.h> //定义关于时间的函数
#include <wchar.h> //宽字符处理及输入/输出
#include <wctype.h> //宽字符分类

//////////////////////////////////////////////////////////////////////////

标准 C++ (同上的不再注释)

#include <algorithm> //STL 通用算法
#include <bitset> //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //复数类
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL 双端队列容器
#include <exception> //异常处理类
#include <fstream>
#include <functional> //STL 定义运算函数(代替运算符)
#include <limits>
#include <list> //STL 线性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本输入/输出支持
#include <iosfwd> //输入/输出系统使用的前置声明
#include <iostream>
#include <istream> //基本输入流
#include <ostream> //基本输出流
#include <queue> //STL 队列容器
#include <set> //STL 集合容器
#include <sstream> //基于字符串的流
#include <stack> //STL 堆栈容器
#include <stdexcept> //标准异常类
#include <streambuf> //底层输入/输出支持
#include <string> //字符串类
#include <utility> //STL 通用模板类
#include <vector> //STL 动态数组容器
#include <cwchar>
#include <cwctype>

using namespace std;

//////////////////////////////////////////////////////////////////////////

C99 增加

#include <complex.h> //复数处理
#include <fenv.h> //浮点环境
#include <inttypes.h> //整数格式转换
#include <stdbool.h> //布尔环境
#include <stdint.h> //整型环境
#include <tgmath.h> //通用类型数学宏

#include<conio.h> 说明调用DOS控制台I/O子程序的各个函数。
#include<sio.h> 包含字符串库函数说明的头文件
#include<slib.h> 包含动态存储与释放函数头文件
参考技术A #ifndef BLKID_PARTITIONS_DOS_H
#define BLKID_PARTITIONS_DOS_H

struct dos_partition
unsigned char boot_ind; /* 0x80 - active */
unsigned char bh, bs, bc; /* begin CHS */
unsigned char sys_type;
unsigned char eh, es, ec; /* end CHS */
unsigned char start_sect[4];
unsigned char nr_sects[4];
__attribute__((packed));

#define BLKID_MSDOS_PT_OFFSET 0x1be

/* assemble badly aligned little endian integer */
static inline unsigned int assemble4le(unsigned char *p)

return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);


static inline unsigned int dos_partition_start(struct dos_partition *p)

return assemble4le(&(p->start_sect[0]));


static inline unsigned int dos_partition_size(struct dos_partition *p)

return assemble4le(&(p->nr_sects[0]));


static inline int is_valid_mbr_signature(const unsigned char *mbr)

return mbr[510] == 0x55 && mbr[511] == 0xaa ? 1 : 0;


#endif /* BLKID_PARTITIONS_DOS_H */本回答被提问者采纳
参考技术B f

VS c++2005中头文件有的为啥必须加.h比如malloc

会出错找不到头文件

头文件加不加 .h 这个只是标准和习惯问题

C++ 标准库使用不加 .h 的头文件是为了区分 C 的标准库头文件而已

出于习惯,完全可以用原来 C 的头文件

但是一些原本就是 C++ 头文件,如 iostream,就不按这个原则,不应该包含 .h

malloc 可以用 cstdlib 或 stdlib.h
参考技术A VS c++ .h表示为全局的头文件..
不加.h的表示为命名空间中的头文件.
如:#include<stdio.h> 相当于
#include<cstdio>
using namespace std; //使用std命名空间. 不声明适用的命名空间默认使用std
参考技术B 没有.h的都是C++的STL(标准模板库)

而带.h的都是C 的标准库的头文件

你可以去安装路径下的
Microsoft Visual Studio .NET 2003\Vc7\include下看看
比如string
同时会有string和string.h,2个文件,
其中一个是STL,一个是标准的头文件,

以上是关于C语言中头文件#include "dos.h"中包涵哪些库函数?的主要内容,如果未能解决你的问题,请参考以下文章

c语言中头文件的作用?

关于c语言中头文件的问题

C语言中头文件errno.h是啥含义?包含些啥内容?

请问C程序中,出现了cons.h头文件,是啥,找不到这个头文件,谢谢

c语言 关于system函数的问题

C++中头文件<ctime>包含哪些函数