memset、wmemset
更新 : 2007 年 11 月
バッファを指定した文字に設定します。
void *memset(
void *dest,
int c,
size_t count
);
wchar_t *wmemset(
wchar_t *dest,
wchar_t c,
size_t count
);
パラメータ
dest
対象となるバッファへのポインタ。c
設定する文字。count
文字数。
戻り値
dest の値。
解説
dest の最初の count 文字を c の文字に設定します。
セキュリティに関するメモ 対象のバッファのサイズが、少なくとも 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