__movsb
Microsoft 專有的
產生移動的字串 (rep movsb) 的指令。
void __movsb(
unsigned char* Destination,
unsigned const char* Source,
size_t Count
);
參數
[out] Destination
若要複製的目的端變數的指標。[in] Source
若要複製的來源變數的指標。[in] Count
要複製的位元組數目。
需求
內建 |
架構 |
---|---|
__movsb |
x86,x64 |
標頭檔 <intrin.h>
備註
結果會是第一個Count個位元組所指Source會被複製到Destination字串。
只有使用與內建這個常式。
範例
// movsb.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsb)
int main()
{
unsigned char s1[100];
unsigned char s2[100] = "A big black dog.";
__movsb(s1, s2, 100);
printf_s("%s %s", s1, s2);
}