siprintf : 写入格式化输出(仅限整数)
#include <stdio.h>int siprintf(char *str, const char *format [, arg, ...]);```### 描述
siprintf 是 sprintf 的受限版本:它具有相同的参数和行为,不同之处在于它无法执行任何浮点格式化:f、g、G、e 和 F 类型说明符不被识别。### 返回值
siprintf 返回输出字符串中的字节数,末尾的 NULL 不计入其中。siprintf 在遇到格式字符串的末尾时返回。
---
**权威来源**: BUSMASTER DITA help source `siprintf.dita`, compiled into `BUSMASTER.CHM` with the application.