_putw
写入流的整数。
int _putw(
int binint,
FILE *stream
);
参数
binint
是的二进制整数输出。stream
为 文件 结构的指针。
返回值
返回编写的值。 EOF 的返回值可能指示错误。 由于 EOF 也是一个合法的整数值,请使用 ferror 验证错误。 如果 stream 是 null 指针,无效参数调用处理程序,如 参数验证所述。 如果执行允许继续,此功能设置 errno 到 EINVAL 并返回 EOF。
有关这些属性和其他错误代码的信息,请参见 _doserrno、 errno、 _sys_errlist 和 _sys_nerr。
备注
_putw 功能编写类型 int 的二进制值对流 的当前位置 。 _putw 不影响项目的对齐方式在流中也不采用任何特殊对齐。 _putw 主要用于与以前的库的兼容性。 ,因为 int 的大小和排序。 int 中的字节在系统中有所不同时,可移植性问题可能会与 _putw 。
要求
实例 |
必需的头 |
---|---|
_putw |
stdio.h |
有关更多兼容性信息,请参见中介绍的 兼容性 。
库
C 运行库的所有版本。
示例
// crt_putw.c
/* This program uses _putw to write a
* word to a stream, then performs an error check.
*/
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
FILE *stream;
unsigned u;
if( fopen_s( &stream, "data.out", "wb" ) )
exit( 1 );
for( u = 0; u < 10; u++ )
{
_putw( u + 0x2132, stream ); /* Write word to stream. */
if( ferror( stream ) ) /* Make error check. */
{
printf( "_putw failed" );
clearerr_s( stream );
exit( 1 );
}
}
printf( "Wrote ten words\n" );
fclose( stream );
}
Output
Wrote ten words
.NET Framework 等效项
不适用。若要调用标准 C 函数,请使用 PInvoke。有关更多信息,请参见 平台调用示例。