memset, wmemset
Buffer degli insiemi a un carattere specificato.
void *memset(
void *dest,
int c,
size_t count
);
wchar_t *wmemset(
wchar_t *dest,
wchar_t c,
size_t count
);
Parametri
dest
Puntatore alla destinazione.c
Carattere da impostare.conteggio
numero di caratteri.
Valore restituito
Valore di dest.
Note
imposta il primo count caratteri di dest il carattere c.
Nota sulla sicurezza Assicurarsi che il buffer di destinazione disponga di spazio per almeno count caratteri.Per ulteriori informazioni, vedere Evitare i sovraccarichi del buffer.
Requisiti
routine |
Intestazione di associazione |
---|---|
memset |
<memory.h> o <string.h> |
wmemset |
<wchar.h> |
per informazioni di compatibilità aggiuntive, vedere compatibilità nell'introduzione.
Librerie
Tutte le versioni di Librerie di runtime del linguaggio C.
Esempio
// 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 );
}
Output
Before: This is a test of the memset function
After: **** is a test of the memset function
Di seguito è riportato un esempio di utilizzo di 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 );
}
Output
Before: This is a test of the wmemset function
After: **** is a test of the wmemset function
Equivalente .NET Framework
Vedere anche
Riferimenti
_strnset, _strnset_l, _wcsnset, _wcsnset_l, _mbsnset, _mbsnset_l