__stosb
Microsoft 固有の仕様
文字列の格納命令 (rep stosb
) を生成します。
構文
void __stosb(
unsigned char* Destination,
unsigned char Data,
size_t Count
);
パラメーター
宛先
[out] 操作の宛先。
Data
[in] 格納するデータ。
Count
[in] 書き込むバイトのブロックの長さ。
要件
Intrinsic | Architecture |
---|---|
__stosb |
x86、x64 |
ヘッダー ファイル<intrin.h>
解説
結果として、文字 Data が Destination 文字列の Count 個のバイトのブロックに書き込まれます。
このルーチンは、組み込みとしてのみ使用できます。
例
// stosb.c
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__stosb)
int main()
{
unsigned char c = 0x40; /* '@' character */
unsigned char s[] = "*********************************";
printf_s("%s\n", s);
__stosb((unsigned char*)s+1, c, 6);
printf_s("%s\n", s);
}
*********************************
*@@@@@@**************************
Microsoft 固有の仕様はここまで