#include

#include 是当你想要在程式码内加入外部函式库时使用。它可以替你加入庞大的标准 C 函式库以及一些特别设计给 86Duino 使用的函式库。

DJGPP C 函式库参考连结。(DJGPP 是 86Duino 所使用的编译器)

注意 #include#define 相同,最尾端无须加入分号。若是加入了也合乎语法,但可能造成未预期的错误。

范例

本范例引入了一个可读取 BIOS 内部计数器,此计数器数值由午夜 0 点以 18.2 赫兹的频率递增。

#include <bios.h>

long ticks = biostime(0, 0);

语法参考主页面

本页由热血青年 LBU 译自英文版。

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.