memset wmemset
Nastaví zadaný znak vyrovnávacích pamětí.
void *memset(
void *dest,
int c,
size_t count
);
wchar_t *wmemset(
wchar_t *dest,
wchar_t c,
size_t count
);
Parametry
dest
Ukazatel do místa určení.c
Znak nastavení.počet
Počet znaků.
Vrácená hodnota
Hodnota dest.
Poznámky
Nastaví první count znaky dest znaku, c.
Zabezpečení zajistěte cílové vyrovnávací paměti dostatek místa pro nejméně count znaků.Další informace naleznete v tématu Vyhnout způsobí přetečení vyrovnávací paměti.
Požadavky
Rutina |
Požadované záhlaví |
---|---|
memset |
<memory.h> nebo <string.h> |
wmemset |
<wchar.h> |
Další informace o kompatibilitě, viz Compatibility v úvodu.
Knihovny
Všechny verze C Runtime knihovny.
Příklad
// 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 );
}
Výsledek
Before: This is a test of the memset function
After: **** is a test of the memset function
Zde je příklad použití 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 );
}
Výsledek
Before: This is a test of the wmemset function
After: **** is a test of the wmemset function
Ekvivalent v rozhraní .NET Framework
Viz také
Referenční dokumentace
Manipulace s vyrovnávací paměti
_strnset, _strnset_l, _wcsnset, _wcsnset_l, _mbsnset, _mbsnset_l