__stosw
Microsoft 專有的
會產生存放字串指示 (rep stosw)。
void __stosw(
unsigned short* Dest,
unsigned short Data,
size_t Count
);
參數
[out] Dest
作業的目的地。[in] Data
要儲存的資料。[in] Count
要寫入的文字區塊的長度。
需求
內建 |
架構 |
---|---|
__stosw |
x86,x64 |
標頭檔 <intrin.h>
備註
結果是,這個字Data會寫入一段內Count特定的文字Dest的字串。
只有使用與內建這個常式。
範例
// stosw.c
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__stosw)
int main()
{
unsigned short val = 128;
unsigned short a[100];
memset(a, 0, sizeof(a));
__stosw(a+10, val, 2);
printf_s("%u %u %u %u", a[9], a[10], a[11], a[12]);
}