__stosb
Microsoft 專有的
會產生存放字串指示 (rep stosb)。
void __stosb(
unsigned char* Dest,
unsigned char Data,
size_t Count
);
參數
[out] Dest
作業的目的地。[in] Data
要儲存的資料。[in] Count
要寫入的位元組區塊的長度。
需求
內建 |
架構 |
---|---|
__stosb |
x86,x64 |
標頭檔 <intrin.h>
備註
結果是,字元Data會寫入一段內Count位元組的Dest字串。
只有使用與內建這個常式。
範例
// 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);
}