toascii : 将整数强制转换为 ASCII 范围
#include <ctype.h>int toascii(int c);```### 描述
toascii 是一个宏,它通过将所有高位清零,将整数强制转换到 ASCII 范围(0--127)内。
通过使用 `#undef toascii' 取消定义该宏,你可以使用编译后的子例程来代替宏定义。### 返回值
toascii 返回 0 到 127 之间的整数。tolower : 将字符转换为小写
---
**权威来源**: BUSMASTER DITA help source `toascii.dita`, compiled into `BUSMASTER.CHM` with the application.