memset、wmemset
指定された文字に対してバッファー。
void *memset(
void *dest,
int c,
size_t count
);
wchar_t *wmemset(
wchar_t *dest,
wchar_t c,
size_t count
);
パラメーター
dest
ターゲットへのポインター。c
設定する文字。カウント
文字の数。
戻り値
dest の値。
解説
文字 c に dest の count の最初の文字を設定します。
セキュリティに関するメモ は変換先バッファーに少なくとも count の文字の十分な領域があることを確認します。詳細については、「Avoiding Buffer Overruns」を参照してください。
必要条件
ルーチン |
必須ヘッダー |
---|---|
memset |
<memory.h> または <string.h> |
wmemset |
<wchar.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
ライブラリ
C ランタイム ライブラリのすべてのバージョン。
使用例
// crt_memset.c
/* This program uses memset to
* set the first four chars of buffer to "*".
*/
#include <memory.h>
#include <stdio.h>
int main( void )
{
char buffer[] = "This is a test of the memset function";
printf( "Before: %s\n", buffer );
memset( buffer, '*', 4 );
printf( "After: %s\n", buffer );
}
出力
Before: This is a test of the memset function
After: **** is a test of the memset function
wmemset の使用例を次に示します :
// crt_wmemset.c
/* This program uses memset to
* set the first four chars of buffer to "*".
*/
#include <wchar.h>
#include <stdio.h>
int main( void )
{
wchar_t buffer[] = L"This is a test of the wmemset function";
wprintf( L"Before: %s\n", buffer );
wmemset( buffer, '*', 4 );
wprintf( L"After: %s\n", buffer );
}
出力
Before: This is a test of the wmemset function
After: **** is a test of the wmemset function